forked from sylv1ah/zappy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (53 loc) · 1.09 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"manifest_version": 2,
"version": "1.3",
"name": "zappy",
"description": "slow fashion, quick maths",
"author": "Joko Sanyang, Freddie Preece, Sylvia Hoang",
"permissions": [
"storage",
"activeTab",
"declarativeContent",
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"assets/*.png"
],
"icons": {
"16": "./assets/terrapin16.png",
"48": "./assets/terrapin48.png",
"128": "./assets/terrapin128.png"
},
"page_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://*.hm.com/*",
"https://*.asos.com/*",
"https://*.nike.com/*",
"https://*.uniqlo.com/*",
"https://*.shein.co.uk/*",
"https://*.shein.com/*",
"https://*.macys.com/*",
"https://*.nordstrom.com/*",
"https://*.zappos.com/*",
"https://*.boohoo.com/*"
],
"run_at": "document_idle",
"css": [
"style.css"
],
"js": [
"content.js"
]
}
]
}