125 lines
3.0 KiB
JSON
125 lines
3.0 KiB
JSON
{
|
|
"name": "Stylus",
|
|
"version": "1.4.22",
|
|
"minimum_chrome_version": "49",
|
|
"description": "__MSG_description__",
|
|
"homepage_url": "https://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",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"contextMenus",
|
|
"storage",
|
|
"alarms",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"js/promisify.js",
|
|
"js/messaging.js",
|
|
"js/msg.js",
|
|
"js/storage-util.js",
|
|
"js/sections-util.js",
|
|
"js/worker-util.js",
|
|
"js/prefs.js",
|
|
"js/script-loader.js",
|
|
"js/usercss.js",
|
|
"js/cache.js",
|
|
"background/db.js",
|
|
"background/style-manager.js",
|
|
"background/navigator-util.js",
|
|
"background/icon-util.js",
|
|
"background/background.js",
|
|
"background/usercss-helper.js",
|
|
"background/style-via-api.js",
|
|
"background/search-db.js",
|
|
"background/update.js",
|
|
"background/openusercss-api.js",
|
|
"vendor/semver-bundle/semver.js"
|
|
]
|
|
},
|
|
"commands": {
|
|
"_execute_browser_action": {},
|
|
"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": ["js/promisify.js", "js/msg.js", "js/prefs.js", "content/apply.js"]
|
|
},
|
|
{
|
|
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"js": ["content/install-hook-userstyles.js"]
|
|
},
|
|
{
|
|
"matches": ["https://openusercss.org/*", "https://openusercss.com/*"],
|
|
"run_at": "document_start",
|
|
"all_frames": false,
|
|
"js": ["content/install-hook-openusercss.js"]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://*/*.user.css",
|
|
"*://*/*.user.styl",
|
|
|
|
"file://*/*.user.css",
|
|
"file://*/*.user.styl",
|
|
|
|
"ftp://*/*.user.css",
|
|
"ftp://*/*.user.styl",
|
|
|
|
"*://*/*.user.css?*",
|
|
"*://*/*.user.styl?*",
|
|
|
|
"file://*/*.user.css?*",
|
|
"file://*/*.user.styl?*",
|
|
|
|
"ftp://*/*.user.css?*",
|
|
"ftp://*/*.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
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "{7a7a4a92-a2a0-41d1-9fd7-1e92480d612d}",
|
|
"strict_min_version": "53"
|
|
}
|
|
}
|
|
}
|