-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
31 lines (31 loc) · 1.11 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "Disboard Auto Bump",
"version": "3.9.0",
"description": "Not against Discord's ToS!",
"manifest_version": 2,
"icons": {"128": "images/icon_128.png"},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "popup.html"
},
"permissions": ["activeTab", "storage", "webRequest", "webRequestBlocking", "notifications", "*://disboard.org/*", "tabs", "contextMenus"],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["*://disboard.org/*dashboard/servers", "*://disboard.org/*dashboard/servers/", "*://disboard.org/*dashboard/servers?*", "*://disboard.org/*dashboard/servers/?"],
"js": ["libs/sweetalert2.all.min.js", "libs/jquery.min.js", "content.js"]
}, {
"run_at": "document_start",
"matches": ["*://disboard.org/server/recaptcha-bump*"],
"js": ["content2.js"]
}
]
}