gombot-chrome/manifest.json

41 строка
1.0 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": "icons/gombot-icon-128.png"
},
"background": {
"page": "background.html"
},
2012-11-21 05:08:17 +04:00
"options_page": "data/debug_settings.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["data/pwmgr.css"],
"js": ["data/pwmgr_inject.js","data/observer.js"]
}
],
"browser_action": {
2012-11-21 05:38:24 +04:00
"default_icon": "icons/cropped_persona_icon.png",
"default_popup": "data/browser_action.html"
},
2012-11-22 00:53:16 +04:00
"update_url": "http://dev.tobmog.org/downloads/updates.xml",
"web_accessible_resources": [
"icons/small.png",
"data/pin_entry.html",
"data/pin_entry.js",
"data/css/pin_entry.css",
"data/remember_password_infobar.html"
]
}