stylus/manifest.json

70 lines
1.6 KiB
JSON
Raw Normal View History

2015-01-29 18:41:45 +00:00
{
2017-02-14 15:35:53 +00:00
"name": "Stylus",
2017-09-06 11:45:24 +00:00
"version": "1.1.4",
"minimum_chrome_version": "49",
2017-02-14 15:35:53 +00:00
"description": "__MSG_description__",
2017-03-11 09:26:24 +00:00
"homepage_url": "http://add0n.com/stylus.html",
2017-02-14 15:35:53 +00:00
"manifest_version": 2,
"icons": {
2017-03-24 16:38:02 +00:00
"16": "/images/icon/16.png",
"32": "/images/icon/32.png",
"48": "/images/icon/48.png",
"128": "/images/icon/128.png"
2017-02-14 15:35:53 +00:00
},
"permissions": [
"tabs",
"webNavigation",
"contextMenus",
"storage",
"<all_urls>"
2017-04-13 07:54:56 +00:00
],
2017-02-14 15:35:53 +00:00
"background": {
2017-07-12 18:52:44 +00:00
"scripts": [
2017-07-14 00:52:40 +00:00
"js/messaging.js",
"vendor-overwrites/lz-string/LZString-2xspeedup.js",
2017-07-12 18:52:44 +00:00
"background/storage.js",
"js/prefs.js",
"background/background.js",
"background/update.js"
]
2017-02-14 15:35:53 +00:00
},
"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,
2017-07-12 18:52:44 +00:00
"js": ["content/apply.js"]
2017-02-14 15:35:53 +00:00
},
{
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
"run_at": "document_start",
2017-02-14 15:35:53 +00:00
"all_frames": false,
2017-07-12 18:52:44 +00:00
"js": ["content/install.js"]
2017-02-14 15:35:53 +00:00
}
],
"browser_action": {
"default_icon": {
2017-03-24 16:38:02 +00:00
"16": "/images/icon/16w.png",
"32": "/images/icon/32w.png",
"19": "/images/icon/19w.png",
"38": "/images/icon/38w.png"
2017-02-14 15:35:53 +00:00
},
"default_title": "Stylus",
"default_popup": "popup.html"
},
"default_locale": "en",
"options_ui": {
2017-07-14 08:25:33 +00:00
"page": "options.html",
2017-02-14 15:35:53 +00:00
"chrome_style": true
}
2015-01-29 18:41:45 +00:00
}