diskort/manifest.json

32 lines
597 B
JSON
Raw Normal View History

2022-04-12 18:36:18 +00:00
{
"manifest_version": 2,
"name": "DisKort",
"version": "3.0.0",
"description": "Custom theme for Discord",
"permissions": [
"https://raw.githubusercontent.com/Er2ch/diskort/*",
"*://discord.com/",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["js/bg.js"],
"persistent": true
},
2022-04-24 17:14:41 +00:00
"web_accessible_resources": ["js/webpack.js"],
2022-04-12 18:36:18 +00:00
"content_scripts": [{
"matches": ["*://discord.com/*"],
"js": ["js/inj.js"]
}],
"browser_specific_settings": {
"gecko": {
"id": "{7e79557e-5773-4be8-b0e2-9e35b34b692c}"
}
}
}