| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "manifest_version": 2,
- "name" : "Markdown Viewer",
- "version" : "2.6",
- "description" : "Markdown Viewer",
- "page_action": {
- "default_icon": {
- "19" : "/images/icon19.png",
- "38" : "/images/icon38.png"
- },
- "default_title": "Markdown Viewer",
- "default_popup": "/content/popup.html"
- },
- "options_page": "/content/options.html",
- "background" : {
- "scripts": [
- "/vendor/marked.js",
- "/background/markdown.js",
- "/background/background.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" : "/images/icon16.png",
- "48" : "/images/icon48.png",
- "128": "/images/icon128.png"
- },
- "homepage_url": "https://chrome.google.com/webstore/detail/markdown-viewer/ckkdlimhmcjmikdlpkmbgfkaikojcbjk",
- "permissions": [
- "storage",
- "file:///*"
- ],
- "optional_permissions": [
- "https://*/",
- "http://*/",
- "*://*/"
- ]
- }
|