-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
34 lines (34 loc) · 937 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
{
"name": "Password Generator",
"version": "0.0",
"manifest_version": 2,
"description": "Generate passwords for websites based on one master password and their domains.",
"icons": {
"16": "icons/icon-16.png",
"19": "icons/icon-19.png",
"32": "icons/icon-32.png",
"38": "icons/icon-38.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png",
"192": "icons/icon-192.png",
"256": "icons/icon-256.png"
},
"permissions": ["activeTab", "storage"],
"browser_action": {
"default_icon": {
"16": "icons/icon-16.png",
"19": "icons/icon-19.png",
"32": "icons/icon-32.png",
"38": "icons/icon-38.png"
},
"default_title": "Password Generator",
"default_popup": "generate.html"
},
"options_page": "options.html",
"background": {
"scripts": ["js/storage.js"],
"persistent": true
}
}