forked from passwordmaker/chrome-passwordmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.26 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
{
"author": "GitTom",
"background": {
"persistent": false,
"scripts": ["javascript/background.js"]
},
"browser_action": {
"default_icon": {
"16": "images/passwdmaker16.png",
"48": "images/passwdmaker48.png",
"128": "images/passwdmaker128.png"
},
"default_popup": "html/popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Z"
}
}
},
"description": "Flexible password generator using a cryptographic hash algorithm of your choice - Fully Compatible with PasswordMaker.org",
"homepage_url": "https://github.com/passwordmaker/chrome-passwordmaker",
"icons": {
"16": "images/passwdmaker16.png",
"48": "images/passwdmaker48.png",
"128": "images/passwdmaker128.png"
},
"manifest_version": 2,
"name": "PasswordMaker (.org)",
"offline_enabled": true,
"options_page": "html/options.html",
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"optional_permissions": ["clipboardWrite"],
"permissions": ["activeTab", "storage", "alarms"],
"short_name": "PasswordMaker.org",
"version": "0.9.1"
}