forked from passwordmaker/chrome-passwordmaker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
29 lines (29 loc) · 851 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
{
"background": {
"scripts": ["javascript/background.js"]
},
"browser_action": {
"default_icon": "images/passwdmaker48.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 Pro",
"offline_enabled": true,
"options_page": "html/options.html",
"permissions": ["activeTab", "storage", "alarms"],
"version": "0.8.5"
}