-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (35 loc) · 954 Bytes
/
manifest.json
File metadata and controls
36 lines (35 loc) · 954 Bytes
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
{
"manifest_version": 2,
"name": "BG promo",
"version": "0.1",
"minimum_chrome_version": "54",
"icons": {
"16": "icon_16.png",
"128": "icon_128.png"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon_16.png"
},
"web_accessible_resources": [
"data/codes.json"
],
"content_scripts": [
{
"matches": ["https://www.banggood.com/shopping_cart.html",
"https://www.banggood.com/index.php?com=account&t=wishlist"],
"js": ["uievents.js", "ui.js", "priceHistory.js", "wishlist.js", "history.js", "bg_comm.js", "parallelCodes.js", "jquery-1.x-git.js"],
"css": ["style.css"]
}
],
"permissions": [
"activeTab",
"storage",
"webNavigation",
"https://www.banggood.com/shopping_cart.html",
"https://www.banggood.com/index.php",
"https://raw.githubusercontent.com/pmarkiewicz/bg/master/data/codes.json"
]
}