| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "manifest_version": 3,
- "name" : "Markdown Viewer",
- "version" : "5.1",
- "description" : "Markdown Viewer",
- "homepage_url": "https://github.com/simov/markdown-viewer",
- "icons": {
- "16" : "/icons/default/16x16.png",
- "19" : "/icons/default/19x19.png",
- "38" : "/icons/default/38x38.png",
- "48" : "/icons/default/48x48.png",
- "128": "/icons/default/128x128.png"
- },
- "action": {
- "default_icon": {
- "16" : "/icons/default/16x16.png",
- "19" : "/icons/default/19x19.png",
- "38" : "/icons/default/38x38.png",
- "48" : "/icons/default/48x48.png",
- "128" : "/icons/default/128x128.png"
- },
- "default_title": "Markdown Viewer",
- "default_popup": "/popup/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/icon.js",
- "/background/index.js"
- ]
- },
- "options_ui": {
- "page": "/options/index.html"
- },
- "web_accessible_resources": [
- {
- "matches": [
- "<all_urls>"
- ],
- "resources": [
- "/icons/dark/16x16.png",
- "/icons/light/16x16.png",
- "/themes/*",
- "/vendor/mathjax/fonts/*",
- "/vendor/prism.min.css",
- "/vendor/prism-okaidia.min.css"
- ]
- }
- ],
- "permissions": [
- "storage",
- "scripting"
- ],
- "host_permissions": [
- "file:///*"
- ],
- "optional_permissions": [
- "webRequest",
- "*://*/"
- ],
- "browser_specific_settings": {
- "gecko": {
- "id": "[email protected]",
- "strict_min_version": "110.0"
- }
- }
- }
|