-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
50 lines (42 loc) · 979 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
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "XKCD Substitutions 3",
"short_name": "XKCD Substitutions",
"description": "Replace words and phrases on websites you visit, using the substitution lists from XKCD comics.",
"version": "0.16",
"browser_action": {
"default_icon": "resources/icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "resources/icon-128x128.png"
},
"background": {
"scripts": [
"Replacer/Constants.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"Replacer/Constants.js",
"Replacer/ElementDecorators.js",
"Replacer/TextNode.js",
"Replacer/Replacement.js",
"Replacer/Settings.js",
"Replacer/Replacer.js",
"content_script.js"]
}
],
"options_page": "options.html",
"permissions": [
"activeTab",
"webNavigation",
"storage"
]
}