-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
66 lines (59 loc) · 1.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"manifest_version": 2,
"name": "PasswordMaker X",
"description": "Generate per-website passwords based on a master one.",
"homepage_url": "https://github.com/emersion/passwordmaker",
"version": "0.2.2",
"author": "emersion",
"icons": {
"16": "img/icon-16.png",
"20": "img/icon-20.png",
"32": "img/icon-32.png",
"40": "img/icon-40.png",
"48": "img/icon-48.png",
"64": "img/icon-64.png",
"72": "img/icon-72.png",
"96": "img/icon-96.png",
"128": "img/icon-128.png",
"140": "img/icon-140.png",
"300": "img/icon-300.png"
},
"offline_enabled": true,
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"storage",
"activeTab",
"clipboardWrite"
],
"browser_action": {
"default_title": "PasswordMaker X",
"default_icon": {
"16": "img/icon-16.png",
"20": "img/icon-20.png",
"32": "img/icon-32.png",
"40": "img/icon-40.png",
"48": "img/icon-48.png",
"64": "img/icon-64.png"
},
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": ["js/background.js"],
"persistent": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Space"
}
}
}
}