-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
39 lines (38 loc) · 1.03 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
32
33
34
35
36
37
38
39
{
"manifest_version": 2,
"name" : "SupremeBot",
"version" : "0.5",
"options_page": "/html/options.html",
"description" : "Supreme bot",
"background": {
"scripts": ["js/background.js", "js/external/jquery.min.js", "js/log.js"],
"persistent": true
},
"permissions": [
"webRequestBlocking",
"webRequest",
"tabs",
"storage",
"downloads",
"https://*/*",
"http://*/*",
"*://*/*"
],
"web_accessible_resources": [
"https://www.supremecommunity.com/",
"https://www.ssupremecommunity.com/",
"css/restyle-style.css",
"img/banned.jpg"
],
"browser_action": {
"default_title": "Supreme Bot",
"default_icon": "img/icon.png",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"matches": ["http://www.supremenewyork.com/shop/*","https://www.supremenewyork.com/*"],
"js": [ "js/external/jquery.min.js", "js/background.js" , "js/log.js"]
}
]
}