2015-01-29 18:41:45 +00:00
|
|
|
{
|
2017-02-14 15:35:53 +00:00
|
|
|
"name": "Stylus",
|
2017-07-12 07:14:37 +00:00
|
|
|
"version": "1.1.1",
|
2017-03-19 20:30:20 +00:00
|
|
|
"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",
|
2017-04-13 09:59:55 +00:00
|
|
|
"storage",
|
|
|
|
"<all_urls>"
|
2017-04-13 07:54:56 +00:00
|
|
|
],
|
2017-02-14 15:35:53 +00:00
|
|
|
"background": {
|
2017-04-11 10:51:40 +00:00
|
|
|
"scripts": ["messaging.js", "storage.js", "prefs.js", "background.js", "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,
|
2017-04-12 09:54:55 +00:00
|
|
|
"match_about_blank": true,
|
2017-02-14 15:35:53 +00:00
|
|
|
"js": ["apply.js"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
|
2017-04-15 09:24:14 +00:00
|
|
|
"run_at": "document_start",
|
2017-02-14 15:35:53 +00:00
|
|
|
"all_frames": false,
|
|
|
|
"js": ["install.js"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"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": {
|
|
|
|
"page": "options/index.html",
|
|
|
|
"chrome_style": true
|
|
|
|
}
|
2015-01-29 18:41:45 +00:00
|
|
|
}
|