-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (54 loc) · 1.29 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
54
{
"manifest_version": 3,
"version": "0.0.1",
"name": "Extension template",
"permissions": [
"tabs",
"activeTab",
"background",
"webRequest",
"declarativeNetRequest"
],
"host_permissions": [
"https://*.example.com/*"
],
"background": {
"service_worker": "dist/background-script.js"
},
"content_scripts": [
{
"js": [
"dist/content-script.js"
],
"matches": [
"https://*.example.com/*"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"dist/injected-script.js"
],
"matches": [
"https://*.example.com/*"
]
}
],
"action": {
"default_title": "Extension template",
"default_popup": "dist/popup.html"
},
"icons": {
"19": "assets/enabled.png",
"38": "assets/enabled.png",
"16": "assets/enabled.png",
"48": "assets/enabled.png",
"128": "assets/enabled.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://*.contentsquare.net https://frontends.contentsquare.com; child-src 'self';"
}
}