Add Chrome addon
This commit is contained in:
30
chrome_addon/manifest.json
Normal file
30
chrome_addon/manifest.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user