diskort/manifest.json

35 lines
585 B
JSON
Raw Normal View History

2021-08-20 15:10:37 +00:00
{
"manifest_version": 2,
"name": "DisKort",
2022-03-20 11:02:42 +00:00
"version": "1.1",
2021-08-20 15:10:37 +00:00
"description": "Custom theme for Discord",
"icons": {
"48": "ext.png"
},
2022-03-20 16:13:21 +00:00
"permissions": [
"https://raw.githubusercontent.com/Er2ch/diskort/*",
"*://discord.com/",
"webRequest",
"webRequestBlocking"
2022-03-20 09:13:20 +00:00
],
2021-08-20 15:10:37 +00:00
2022-03-20 16:13:21 +00:00
"background": {
"scripts": ["js/bg.js"],
"persistent": true
},
"content_scripts": [{
"matches": ["*://discord.com/*"],
"js": ["js/inj.js"]
}],
2022-03-20 09:13:20 +00:00
"browser_specific_settings": {
"gecko": {
2022-03-20 16:13:21 +00:00
"id": "{7e79557e-5773-4be8-b0e2-9e35b34b692c}"
2022-03-20 09:13:20 +00:00
}
}
2021-08-20 15:10:37 +00:00
}