-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
32 lines (28 loc) · 918 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"manifest_version": 2,
"name": "Password Hasher Plus - Password Generator",
"version": "2.3.6",
"description": "Password Hasher Plus automatically enhances password strength (length and difficulty) to protect your accounts.",
"icons": { "64": "images/icon.png", "128": "images/icon.png" },
"background": {
"page":"background.html"
},
"options_page": "options.html",
"browser_action": {
"default_icon": "images/passhash.png",
"default_title": "Password Hasher",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["lib/jquery-1.7.1.min.js", "lib/jquery.qtip.min.js", "lib/sha1.js", "lib/tld.min.js", "lib/passhashcommon.js", "common.js", "content-script.js"],
"css": ["lib/jquery.qtip.min.css", "styles.css"],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"tabs", "http://*/*", "https://*/*"
]
}