forked from gwatts/chrome-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (34 loc) · 1.05 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
{
"manifest_version": 2,
"name": "Ansible Vault Decryptor",
"version": "1.1.2",
"description": "Decrypts Ansible vaults on github.com and caches passwords in memory",
"author": "Gareth Watts",
"homepage_url": "https://gwatts.com/chrome-ansible",
"icons": {
"128": "icons/chest128.png",
"16": "icons/chest16.png",
"48": "icons/chest48.png"
},
"background": {
"persistent": true,
"scripts": [ "extern/sjcl/sjcl.js", "background.js" ]
},
"content_scripts": [ {
"css": [ "extern/jquery-ui.custom/jquery-ui.min.css" ],
"js": [
"extern/jquery-2.1.3.min.js",
"extern/jquery-ui.custom/jquery-ui.min.js",
"extern/diff/diff-3.2.0.min.js",
"common.js",
"github.js"
],
"matches": [ "https://www.github.com/*", "https://github.com/*" ]
} ],
"options_page": "options.html",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"permissions": [ "storage", "https://www.github.com/*", "https://github.com/*" ]
}