gPass/chrome_addon/manifest.json

31 lines
590 B
JSON

{
"manifest_version": 2,
"name": "gpass",
"version": "0.6",
"description": "gPass : global password manager",
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["lib/parseuri.js", "lib/jsaes.js", "lib/jssha256.js", "lib/hmac.js", "lib/pkdbf2.js", "lib/main.js"],
"run_at" : "document_idle",
"all_frames" : true
}
],
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"options_page": "options.html",
"permissions": [
"https://*/",
"http://*/",
"notifications",
"storage"
]
}