| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- {
- "manifest_version": 2,
- "name" : "Markdown Viewer",
- "version" : "1.3",
- "description" : "Markdown viewer",
- "page_action": {
- "default_icon": {
- "19" : "/images/icon19.png",
- "38" : "/images/icon38.png"
- },
- "default_title": "Markdown Viewer",
- "default_popup": "/views/popup.html"
- },
-
- "background" : {
- "scripts": [
- "/jslib/marked.js",
- "/chrome/markdown.js",
- "/chrome/background.js"
- ],
- "persistent": false
- },
- "content_scripts": [
- {
- "matches": [
- "*://*/*.markdown",
- "*://*/*.mdown",
- "*://*/*.mkdn",
- "*://*/*.md",
- "*://*/*.mkd",
- "*://*/*.mdwn",
- "*://*/*.mdtxt",
- "*://*/*.mdtext",
- "*://*/*.text",
- "file:///*/*.markdown",
- "file:///*/*.mdown",
- "file:///*/*.mkdn",
- "file:///*/*.md",
- "file:///*/*.mkd",
- "file:///*/*.mdwn",
- "file:///*/*.mdtxt",
- "file:///*/*.mdtext",
- "file:///*/*.text"
- ],
- "exclude_matches": [
- "*://github.com/*"
- ],
- "css": [
- "/css/prism.css"
- ],
- "js": [
- "/jslib/jquery-2.0.3.min.js",
- "/jslib/prism.js",
- "/js/content.js"
- ],
- "run_at": "document_start",
- "all_frames": true
- }
- ],
- "web_accessible_resources": [
- "/images/dirty-shade.png",
- "/jslib/jquery-2.0.3.min.map",
- "/themes/github.css",
-
- "/themes/avenir-white.css",
- "/themes/foghorn.css",
- "/themes/jasonm23-dark.css",
- "/themes/jasonm23-foghorn.css",
- "/themes/jasonm23-markdown.css",
- "/themes/jasonm23-swiss.css",
- "/themes/markdown10.css",
- "/themes/markdown1.css",
- "/themes/markdown2.css",
- "/themes/markdown3.css",
- "/themes/markdown4.css",
- "/themes/markdown5.css",
- "/themes/markdown6.css",
- "/themes/markdown7.css",
- "/themes/markdown8.css",
- "/themes/markdown9.css",
- "/themes/markdown-alt.css",
- "/themes/markdown.css",
- "/themes/markedapp-byword.css",
- "/themes/screen.css",
- "/themes/swiss.css",
- "/themes/thomasf-solarizedcssdark.css",
- "/themes/thomasf-solarizedcsslight.css"
- ],
- "icons": {
- "16" : "/images/icon16.png",
- "48" : "/images/icon48.png",
- "128": "/images/icon128.png"
- },
- "homepage_url": "https://chrome.google.com/webstore/detail/markdown-viewer/ckkdlimhmcjmikdlpkmbgfkaikojcbjk",
- "permissions": [
- "tabs",
- "storage"
- ],
- "content_security_policy": "script-src 'unsafe-eval'; object-src 'self'"
- }
|