-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
56 lines (51 loc) · 1.33 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
{
"name": "Twine Enhancer",
"short_name": "Twine++",
"manifest_version": 2,
"version": "1.8.4",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/hogart/twine-enhancer",
"default_locale": "en",
"icons": {
"16": "./icons/16.png",
"48": "./icons/48.png",
"128": "./icons/128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "7a6c3c31de8b5b7389304c652dfd8c930f4bb98a@twine-enhancer",
"strict_min_version": "57.0"
}
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background/background.bundle.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http://twinery.org/2/*",
"https://twinery.org/2/*"
],
"js": [
"./content/content.bundle.js"
],
"css": [
"./content/common.css",
"./content/webColors.css",
"./content/biggerEditors.css",
"./content/neaterPassages.css",
"./content/toolbarButtons.css"
]
}
],
"options_ui": {
"page": "options/options.html",
"chrome_style": true
}
}