forked from val92130/Supreme-Auto-Checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 925 Bytes
/
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
40
41
42
43
{
"manifest_version": 2,
"name": "Supreme Auto-Checkout bot",
"description": "Supreme Open-Source add to cart bot",
"version": "2.9.2",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_popup": "index.html?popup=true",
"default_icon": "assets/img/icon.png"
},
"icons": {
"16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png"
},
"options_page": "index.html",
"permissions": [
"activeTab",
"contentSettings",
"cookies",
"storage",
"webNavigation",
"background",
"notifications",
"webRequest",
"webRequestBlocking",
"*://*.supremenewyork.com/*",
"http://www.supremenewyork.com/mobile_stock.json",
"downloads"
],
"content_scripts": [
{
"matches": [
"*://*.supremenewyork.com/*"
],
"js": [
"extension.js"
]
}
]
}