stylus/manifest.json

83 lines
2.0 KiB
JSON

{
"name": "Stylus",
"version": "1.1.7.2",
"minimum_chrome_version": "49",
"description": "__MSG_description__",
"homepage_url": "http://add0n.com/stylus.html",
"manifest_version": 2,
"icons": {
"16": "/images/icon/16.png",
"32": "/images/icon/32.png",
"48": "/images/icon/48.png",
"128": "/images/icon/128.png"
},
"permissions": [
"tabs",
"webNavigation",
"contextMenus",
"storage",
"<all_urls>"
],
"background": {
"scripts": [
"js/messaging.js",
"vendor-overwrites/lz-string/LZString-2xspeedup.js",
"js/color-parser.js",
"js/usercss.js",
"background/storage.js",
"background/usercss-helper.js",
"js/prefs.js",
"js/script-loader.js",
"background/background.js",
"vendor/node-semver/semver.js",
"background/style-via-api.js",
"background/update.js"
]
},
"commands": {
"openManage": {
"description": "__MSG_openManage__"
},
"styleDisableAll": {
"description": "__MSG_disableAllStyles__"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true,
"js": ["content/apply.js"]
},
{
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
"run_at": "document_start",
"all_frames": false,
"js": ["content/install-hook-userstyles.js"]
},
{
"matches": ["<all_urls>"],
"include_globs": ["*.user.css", "*.user.styl"],
"run_at": "document_idle",
"all_frames": false,
"js": ["content/install-hook-usercss.js"]
}
],
"browser_action": {
"default_icon": {
"16": "/images/icon/16w.png",
"32": "/images/icon/32w.png",
"19": "/images/icon/19w.png",
"38": "/images/icon/38w.png"
},
"default_title": "Stylus",
"default_popup": "popup.html"
},
"default_locale": "en",
"options_ui": {
"page": "options.html",
"chrome_style": false
}
}