gombot-chrome/manifest.json

40 строки
1010 B
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",
2012-12-04 00:22:52 +04:00
"infobars/*"
]
}