stylus/manifest.json

52 lines
1.0 KiB
JSON
Raw Normal View History

2015-01-29 18:41:45 +00:00
{
"name": "Stylish",
"version": "1.2.2",
"description": "__MSG_description__",
"homepage_url": "http://userstyles.org",
"manifest_version": 2,
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"permissions": [
"tabs",
"webNavigation",
"contextMenus",
2015-01-29 18:41:45 +00:00
"http://userstyles.org/",
"https://userstyles.org/"
],
"background": {
"page": "background.html"
},
"commands": {
"openManage": {
"description": "__MSG_openManage__"
},
"styleDisableAll": {
"description": "__MSG_disableAllStyles__"
}
},
2015-01-29 18:41:45 +00:00
"content_scripts": [
{
2015-01-29 18:44:29 +00:00
"matches": ["http://*/*", "https://*/*", "file:///*"],
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": {
"default_icon": "19.png",
"default_title": "Stylish",
"default_popup": "popup.html"
},
"default_locale": "en"
}