-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
57 lines (48 loc) · 1.1 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
55
56
57
{
"manifest_version": 2,
"name": "Ecclus",
"version": "0.0.2",
"description": "Detects Bible Book Name Abbreviations",
"web_accessible_resources": [
"lang/*/*.js",
"background-script.js"
],
"icons": {
"16": "icons/16.png",
"24": "icons/24.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png",
"256": "icons/256.png"
},
"permissions": [
"http://*.deon.pl/",
"storage",
"tabs"],
"background": {
"page": "background-page.html",
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "icons/16.png",
"24": "icons/24.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png",
"256": "icons/256.png"
},
"default_title": "ecclus",
"default_popup": "popup/button-popup.html"
},
"content_scripts": [
{
"matches": ["*://*.mateusz.pl/*", "file:///*", "*://*.brewiarz.pl/*"],
"js": ["jquery-3.1.1.min.js", "detect.js", "lang/pl/general.js", "lang/en/general.js"]
}
]
}