-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
39 lines (35 loc) · 858 Bytes
/
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
{
"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","jquery-3.6.0.min.js","bootstrap.min.css","bootstrap.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/*","https://facebook.com/*"],
"web_accessible_resources": [{
"resources": ["data/*.json"],
"matches": ["<all_urls>","http://localhost/*","https://facebook.com/*"],
"extension_ids": []
}]
}