2012-08-22 23:06:49 +04:00
|
|
|
{
|
|
|
|
"name": "SkyCrane",
|
|
|
|
"manifest_version": 2,
|
|
|
|
"version": "0.1",
|
|
|
|
"description": "Cross-platform password sync and management.",
|
|
|
|
"permissions": [
|
|
|
|
"tabs",
|
2012-09-05 09:31:32 +04:00
|
|
|
"notifications",
|
|
|
|
"storage",
|
|
|
|
"http://*/",
|
|
|
|
"https://*/"
|
2012-08-22 23:06:49 +04:00
|
|
|
],
|
|
|
|
"background": {
|
2012-11-15 03:39:19 +04:00
|
|
|
"page": "background.html"
|
2012-08-22 23:06:49 +04:00
|
|
|
},
|
2012-11-21 05:08:17 +04:00
|
|
|
"options_page": "data/debug_settings.html",
|
2012-08-22 23:06:49 +04:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["<all_urls>"],
|
2012-09-05 09:31:32 +04:00
|
|
|
"css": ["data/pwmgr.css"],
|
|
|
|
"js": ["data/pwmgr_inject.js","data/observer.js"]
|
2012-08-22 23:06:49 +04:00
|
|
|
}
|
|
|
|
],
|
2012-11-15 03:39:19 +04:00
|
|
|
"browser_action": {
|
2012-11-21 05:38:24 +04:00
|
|
|
"default_icon": "icons/cropped_persona_icon.png",
|
2012-11-15 03:39:19 +04:00
|
|
|
"default_popup": "data/browser_action.html"
|
|
|
|
},
|
2012-09-05 09:31:32 +04:00
|
|
|
"web_accessible_resources": [
|
2012-10-26 04:43:20 +04:00
|
|
|
"icons/small.png",
|
|
|
|
"data/pin_entry.html",
|
|
|
|
"data/pin_entry.js",
|
|
|
|
"data/css/pin_entry.css"
|
2012-09-05 09:31:32 +04:00
|
|
|
]
|
2012-08-22 23:06:49 +04:00
|
|
|
}
|