2015-01-29 18:41:45 +00:00
|
|
|
{
|
2017-01-30 19:20:20 +00:00
|
|
|
"name": "Stylus",
|
2017-02-03 14:12:02 +00:00
|
|
|
"version": "1.0.1",
|
2015-01-29 18:41:45 +00:00
|
|
|
"description": "__MSG_description__",
|
2017-01-30 19:20:20 +00:00
|
|
|
"homepage_url": "https://github.com/schomery/stylish-chrome",
|
2015-01-29 18:41:45 +00:00
|
|
|
"manifest_version": 2,
|
|
|
|
"icons": {
|
2015-05-14 21:24:10 +00:00
|
|
|
"16": "16.png",
|
2015-01-29 18:41:45 +00:00
|
|
|
"48": "48.png",
|
|
|
|
"128": "128.png"
|
|
|
|
},
|
|
|
|
"permissions": [
|
|
|
|
"tabs",
|
2015-01-30 17:28:05 +00:00
|
|
|
"webNavigation",
|
2017-01-30 19:20:20 +00:00
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
2015-03-25 17:59:10 +00:00
|
|
|
"contextMenus",
|
2015-10-04 12:26:50 +00:00
|
|
|
"storage",
|
2017-01-30 19:20:20 +00:00
|
|
|
"*://*/*"
|
|
|
|
],
|
|
|
|
"optional_permissions": [
|
|
|
|
"downloads"
|
2015-01-29 18:41:45 +00:00
|
|
|
],
|
|
|
|
"background": {
|
2017-01-08 08:57:33 +00:00
|
|
|
"scripts": ["messaging.js", "storage-websql.js", "storage.js", "background.js"]
|
2015-01-29 18:41:45 +00:00
|
|
|
},
|
2015-03-24 14:07:59 +00:00
|
|
|
"commands": {
|
|
|
|
"openManage": {
|
|
|
|
"description": "__MSG_openManage__"
|
|
|
|
},
|
|
|
|
"styleDisableAll": {
|
|
|
|
"description": "__MSG_disableAllStyles__"
|
|
|
|
}
|
|
|
|
},
|
2015-01-29 18:41:45 +00:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
2015-08-06 10:05:36 +00:00
|
|
|
"matches": ["<all_urls>"],
|
2015-01-29 18:41:45 +00:00
|
|
|
"run_at": "document_start",
|
|
|
|
"all_frames": true,
|
|
|
|
"js": ["apply.js"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
|
|
|
|
"run_at": "document_end",
|
|
|
|
"all_frames": false,
|
|
|
|
"js": ["install.js"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"options_page": "manage.html",
|
|
|
|
"browser_action": {
|
2015-05-14 21:24:10 +00:00
|
|
|
"default_icon": {
|
2016-08-22 11:01:27 +00:00
|
|
|
"16": "16w.png",
|
|
|
|
"32": "32w.png",
|
2015-05-14 21:24:10 +00:00
|
|
|
"19": "19w.png",
|
|
|
|
"38": "38w.png"
|
|
|
|
},
|
2017-01-30 19:20:20 +00:00
|
|
|
"default_title": "Stylus",
|
2015-01-29 18:41:45 +00:00
|
|
|
"default_popup": "popup.html"
|
|
|
|
},
|
|
|
|
"default_locale": "en"
|
|
|
|
}
|