forked from ericwoodruff/passwordhasherplus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
50 lines (43 loc) · 1.55 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "Password Hasher Plus - Password Generator",
"version": "2.5.1",
"description": "Password Hasher Plus automatically enhances password strength (length and difficulty) to protect your accounts.",
"icons": { "64": "images/icon.png", "128": "images/icon.png" },
"applications": {
"gecko": {
"id": "{ef60b2e8-9dbe-49f6-8c3c-58563028150f}",
"strict_min_version": "63.0"
}
},
"background": {
"scripts": [ "lib/tld.js", "common.js", "storage.js", "storagearea.js", "background.js" ]
},
"options_ui": {
"page": "options.html"
},
"page_action": {
"browser_style": true,
"default_icon": "images/passhash.png",
"default_title": "Password Hasher",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content-script.js"],
"css": ["styles.css"],
"run_at": "document_end",
"all_frames": true
}
],
"commands": {
"_execute_page_action": {
"suggested_key": { "default": "Ctrl+Shift+3" }
}
},
"permissions": [
"activeTab", "tabs", "menus", "storage", "<all_urls>", "clipboardWrite"
],
"content_security_policy": "script-src 'self' 'sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=' 'sha256-xaA6jdp8Hrg9UJVct3bu0uieCYCytFZrv/nqG7Kouys=' 'sha256-leDZ7yEeVa7Q7xy2S/45h+BUogqAQoBrDTpBkTFNkMk=' 'sha256-whAJr3WstpBYYEkPXqP8BPa3Kxfg/Mde0SsnWCSlcy0=' 'sha256-jrZ6wronFF+uAmTEHRfLUYM2wwmui6BDT5uFwT5omQY=' 'sha256-MB52pf5SCKlStcm4MEYmNRveQ9ufaTgAlPJhg7kix1Q=' ; object-src 'self'"
}