-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest copy.json
41 lines (38 loc) · 896 Bytes
/
manifest copy.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
{
"name": "Context",
"version": "0.1",
"description": "Read the news in Biblical context",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["style.css"],
"js": ["content.js","mark.min.js"],
"all_frame": true,
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Context",
"default_icon": "context.png"
},
"background": {
"service_worker": "bg-loader.js"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting"
],
"host_permissions": ["<all_urls>","http://localhost/*"],
"web_accessible_resources": [{
"resources": ["data/*.json"],
"matches": ["<all_urls>","http://localhost/*"],
"extension_ids": []
}],
"content_security_policy": {
"extension_pages": "script-src http://localhost:80; default-src unsafe-inline 'self';sandbox allow-scripts"
}
}