-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1.2 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
{
"manifest_version": 3,
"name": "Bible Previewer",
"short_name": "BiblePreview",
"author": "Cody Guldner",
"description": "Turns every bible verse into a link you can hover to see the contents of the verse.",
"version": "2.0.3",
"icons": {
"16": "icons/bible16.png",
"32": "icons/bible32.png",
"64": "icons/bible64.png",
"128": "icons/bible128.png"
},
"permissions": ["storage", "tabs"],
"host_permissions": ["https://bibles.org/v2/", "*://*/*"],
"action": {
"default_icon": "icons/bible16.png",
"default_popup": "html/popup.html"
},
"background": {
"scripts": ["js/background.js"],
"service_worker": "js/background.js",
"persistent": false
},
"options_ui": {
"page": "html/options.html",
"open_in_tab": false
},
"web_accessible_resources": [
{
"resources": ["js/*.js.map"],
"matches": ["*://*/*"]
}
],
"content_scripts": [
{
"css": ["css/biblePreviewer.css"],
"js": ["js/biblePreviewer.js"],
"matches": ["<all_urls>"],
"all_frames": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "{bda3a2e1-851d-4bf9-83c1-0d1ac026a675}",
"strict_min_version": "58.0"
}
}
}