gombot-chrome/manifest.json

45 строки
1.4 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

{
2012-12-13 02:43:03 +04:00
"name": "Gombot Alpha",
"manifest_version": 2,
"version": "0.1.8",
"description": "Tired of remembering your usernames and passwords? Let Gombot do the work for you!",
"permissions": [
"tabs",
"notifications",
"storage",
"http://*/",
2013-02-04 11:12:13 +04:00
"https://*/",
"webRequest",
"webRequestBlocking"
],
"icons": {
"128": "images/gombot-icon-128.png"
},
2013-02-04 11:12:13 +04:00
"content_security_policy": "script-src 'self' https://cdn.firebase.com https://auth.firebase.com https://*.firebaseio.com; object-src 'self'",
"background": {
"page": "background/background.html"
},
"options_page": "data/pages/debug_settings/debug_settings.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"all_frames": true,
"js": ["data/lib/jquery.js",
"data/lib/underscore.js",
"data/content_scripts/content_messaging.js",
"data/content_scripts/dom_monitor.js",
"data/content_scripts/password_form_inspector.js",
"data/content_scripts/password_form.js",
"data/content_scripts/main.js"]
}
],
"browser_action": {
"default_icon": "images/gombot_logo-19x19.png",
"default_popup": "browser_action/browser_action.html"
},
2012-11-22 00:53:16 +04:00
"update_url": "http://dev.tobmog.org/downloads/updates.xml",
"web_accessible_resources": [
2012-12-04 00:22:52 +04:00
"infobars/*"
]
}