-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
55 lines (47 loc) · 962 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
51
52
53
54
55
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"name": "Moy.Design",
"description": "Makes web pages lightweight, more readable and more user-friendly.",
"version": "2.3.0",
"icons": {
"128": "res/icon.png"
},
"page_action": {
"default_icon": "res/icon.png",
"default_title": "Moy.Design"
},
"background": {
"scripts": [
"lib/browser-polyfill.min.js",
"lib/jquery.slim.min.js",
"lib/js-yaml.js",
"lib/mustache.js",
"src/moyparser.js",
"src/moytemplate.js",
"src/bg.js"
]
},
"options_ui": {
"page": "src/settings.html",
"open_in_tab": true,
"browser_style": false
},
"permissions": [
"*://*/*",
"webRequest",
"webRequestBlocking",
"storage",
"tabs",
"webNavigation"
],
"web_accessible_resources": [
"src/frame.html",
"src/settings.html",
"src/editor.html"
]
}