forked from simov/markdown-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.edge.json
85 lines (71 loc) · 1.85 KB
/
manifest.edge.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"manifest_version": 2,
"name" : "Markdown Viewer",
"version" : "4.0",
"description" : "Markdown Viewer",
"browser_action": {
"default_icon": {
"19" : "/icons/icon19.png",
"38" : "/icons/icon38.png"
},
"default_title": "Markdown Viewer",
"default_popup": "/popup/index.html"
},
"options_page": "/options/index.html",
"background" : {
"scripts": [
"/vendor/marked.min.js",
"/vendor/remark.min.js",
"/background/compilers/marked.js",
"/background/compilers/remark.js",
"/background/storage.js",
"/background/webrequest.js",
"/background/detect.js",
"/background/inject.js",
"/background/messages.js",
"/background/mathjax.js",
"/background/xhr.js",
"/background/index.js"
],
"persistent": false
},
"web_accessible_resources": [
"/themes/github.css",
"/themes/github-dark.css",
"/themes/godspeed.css",
"/themes/new-modern.css",
"/themes/torpedo.css",
"/themes/vostok.css",
"/themes/ghostwriter.css",
"/themes/radar.css",
"/themes/foghorn.css",
"/themes/markdown.css",
"/themes/markedapp-byword.css",
"/themes/solarized-dark.css",
"/themes/solarized-light.css",
"/themes/screen.css",
"/themes/markdown5.css",
"/themes/markdown6.css",
"/themes/markdown7.css",
"/themes/markdown8.css",
"/themes/markdown9.css",
"/themes/markdown-alt.css"
],
"icons": {
"16" : "/icons/icon16.png",
"48" : "/icons/icon48.png",
"128": "/icons/icon128.png"
},
"homepage_url": "https://chrome.google.com/webstore/detail/markdown-viewer/ckkdlimhmcjmikdlpkmbgfkaikojcbjk",
"permissions": [
"storage",
"file:///*"
],
"optional_permissions": [
"https://*/",
"http://*/",
"*://*/",
"webRequest",
"webRequestBlocking"
]
}