-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (34 loc) · 849 Bytes
/
manifest.json
File metadata and controls
43 lines (34 loc) · 849 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
{
"manifest_version": 2,
"name": "PwdHash2",
"version": "1.0.1",
"default_locale": "en",
"description": "Automatically generates per-site passwords if you prefix your password with @@ or F2.",
"applications": {
"gecko": {
"id": "PwdHash2@GWuk.PwdHash2.github.com",
"strict_min_version": "57.0"
}
},
"author": "Stanford University, extended by GWu",
"homepage_url": "https://github.com/GWuk/PwdHash2",
"icons": {
"48": "icons/pwdhash-48.png",
"96": "icons/pwdhash-96.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/domain-extractor.js"
,"js/hashed-password.js"
,"js/stanford-pwdhash.js"
,"js/md5.js"
,"js/forge.min.js"
]
}
],
"options_ui": {
"page": "content/options.html"
},
"permissions": ["storage"]
}