gombot-chrome/manifest.json

42 строки
1.1 KiB
JSON
Исходник Обычный вид История

{
"name": "Gombot",
"manifest_version": 2,
"version": "0.1",
"description": "Tired of remembering your usernames and passwords? Let Gombot do the work for you!",
"permissions": [
"tabs",
"notifications",
"storage",
"http://*/",
"https://*/"
],
"icons": {
"128": "images/gombot-icon-128.png"
},
"background": {
"page": "background/background.html"
},
"options_page": "pages/debug_settings/debug_settings.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["in_content/observer.js"]
}
],
"browser_action": {
"default_icon": "images/cropped_persona_icon.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": [
"images/small.png",
"common/pin_entry.html",
"common/pin_entry.js",
"common/pin_entry.css",
"infobars/remember_password_infobar.html",
2012-11-30 05:38:34 +04:00
"infobars/signup_nag_infobar.html",
"infobars/pin_entry_infobar.html"
]
}