stylus/manifest.json

62 lines
1.3 KiB
JSON
Raw Normal View History

2015-01-29 18:41:45 +00:00
{
"name": "Stylish",
2016-04-05 00:02:30 +00:00
"version": "1.5.2",
2015-01-29 18:41:45 +00:00
"description": "__MSG_description__",
2015-04-21 16:00:01 +00:00
"homepage_url": "https://userstyles.org",
2015-01-29 18:41:45 +00:00
"manifest_version": 2,
2016-01-31 00:26:34 +00:00
"applications": {
"gecko": {
"id": "{46551EC9-40F0-4e47-8E18-8E5CF550CFB8}"
}
},
2015-01-29 18:41:45 +00:00
"icons": {
"16": "16.png",
2015-01-29 18:41:45 +00:00
"48": "48.png",
"128": "128.png"
},
"permissions": [
"tabs",
"webNavigation",
"contextMenus",
2015-10-04 12:26:50 +00:00
"storage",
2015-01-29 18:41:45 +00:00
"http://userstyles.org/",
"https://userstyles.org/"
],
2016-03-18 02:52:46 +00:00
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
2015-01-29 18:41:45 +00:00
"background": {
2016-03-18 02:52:46 +00:00
"scripts": ["messaging.js", "storage-websql.js", "storage.js", "background.js", "analytics.js"]
2015-01-29 18:41:45 +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": {
"default_icon": {
"19": "19w.png",
"38": "38w.png"
},
2015-01-29 18:41:45 +00:00
"default_title": "Stylish",
"default_popup": "popup.html"
},
"default_locale": "en"
}