-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.32 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
{
"manifest_version": 3,
"name": "Popsugar Edit Tools",
"description": "Add helpful links to Popsugar pages for editorial users.",
"version": "0.0.2",
"action": {
"default_icon": "images/ps-brand-mark.png"
},
"permissions": ["tabs"],
"icons": {
"16": "images/ps-brand-mark.png",
"32": "images/ps-brand-mark.png",
"48": "images/ps-brand-mark.png",
"128": "images/ps-brand-mark.png"
},
"content_scripts": [
{
"js": [
"scripts/utils.js",
"scripts/toolbar.js",
"scripts/gallery-slides.js"
],
"css": [ "toolbar.css" ],
"matches": [
"https://popsugar.com/*",
"https://*.popsugar.com/*",
"https://*.onsugar.com/*",
"http://dev.popsugar.com:3002/*"
]
}
],
"background": {
"service_worker": "scripts/background.js"
},
"web_accessible_resources": [
{
"resources": [
"/images/*"
],
"matches": [
"https://popsugar.com/*",
"https://*.popsugar.com/*",
"https://*.onsugar.com/*",
"http://dev.popsugar.com:3002/*"
]
}
]
}