gombot-chrome/manifest.json

35 строки
840 B
JSON
Исходник Обычный вид История

{
"name": "SkyCrane",
"manifest_version": 2,
"version": "0.1",
"description": "Cross-platform password sync and management.",
"permissions": [
"tabs",
"notifications",
"storage",
"http://*/",
"https://*/"
],
"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"
},
"web_accessible_resources": [
"icons/small.png",
"data/pin_entry.html",
"data/pin_entry.js",
"data/css/pin_entry.css"
]
}