forked from phreaknerd/passhash-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
58 lines (48 loc) · 971 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"manifest_version": 2,
"name": "Password Hasher NG",
"version": "1.0.3",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"description": "Implementation of the Password Hasher extension for the new Webextension API",
"permissions": [
"activeTab",
"notifications",
"storage",
"contextMenus",
"tabs"
],
"icons": {
"48": "icons/logo_48.png"
},
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["jquery-3.2.1.min.js", "content.js"]
}
],
"page_action": {
"default_title": "Hash password",
"default_icon": {
"48": "icons/logo_gr_48.png"
},
"default_popup": "popup.html",
"browser_style": false
},
"commands": {
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+F6"
}
}
}
}