-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
27 lines (27 loc) · 947 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
{
"manifest_version": 2,
"name": "Markdown Viewer ",
"version": "1.0.14",
"description": "View markdown file in Chrome.",
"icons": {
"128": "images/favicon.png",
"16": "images/favicon.png",
"48": "images/favicon.png"
},
"permissions": ["tabs", "\u003Call_urls\u003E"],
"options_page": "options.html",
"content_scripts": [{
"js": ["prettify.js", "markdownviewer.js","marked.js"],
"matches": ["*://*/*.md", "file://*/*.md", "*://*/*.markdown", "file://*/*.markdown", "*://*/*.mdown", "file://*/*.mdown", "*://*/*.mkdn", "file://*/*.mkdn", "*://*/*.mkd", "file://*/*.mkd", "*://*/*.text", "file://*/*.text", "*://*/*.mdtext", "file://*/*.mdtext", "*://*/*.mdtxt", "file://*/*.mdtxt"],
"run_at": "document_end"
}],
"web_accessible_resources": [
"markdownviewer.css",
"prettify.css",
"options.html",
"images/top-icon.png",
"images/source-s-icon.png",
"images/bottom-icon.png",
"images/promo-1.png"
]
}