forked from subdavis/Tusk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chrome.manifest.json
74 lines (74 loc) · 2.01 KB
/
chrome.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
67
68
69
70
71
72
73
74
{
"name": "KeePass Tusk - Password Access and Autofill",
"short_name": "KeePass Tusk",
"version": "2018.11.28",
"manifest_version": 2,
"minimum_chrome_version": "48",
"description": "Readonly KeePass password database integration for Chrome™",
"icons": {
"16": "/assets/icons/exported/16x16.png",
"48": "/assets/icons/exported/48x48.png"
},
"oauth2": {
"client_id": "876467817034-al13p9m2bphgregs0rij76n1tumakcqr.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.readonly"
]
},
"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhoF/A6nYIxSHW2AekTQRJga9QodwEJBTeAA5r0tW9djrTHY3Ei0FdnUE1FrH2Hx03tsj4RjXMWDHtsqMg4REJdFNzndsRKWvliGomXtxE8XByawJf/NGx0/imAtVBrHc846D/Bn4q1dRaRauqkPMKgpcHoPeg+uLTBIfAn5qPgLlvLLqNSKRg6zGYkm0iBYFiyLd1cqWjsDrVhant90W5rE7qmGQPXZudkc2ejtijuMJL4CF9BeQXOVv/9a0XzAwNbArSr+zHnNOicZPyeEnT7mujFDvLRzXvi7OPW+8mdEsm3AeagKZ6bGUuqyzwxs8XlysWqJsXBoX6tjZCGGVpQIDAQAB",
"background": {
"scripts": [
"dll/dll.library.js",
"build/background.build.js"
]
},
"incognito": "split",
"browser_action": {
"default_icon": "/assets/icons/exported/38x38.png",
"default_popup": "popup.html",
"default_title": "KeePass Tusk"
},
"options_ui": {
"page": "options.html",
"chrome_style": false,
"open_in_tab": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space",
"chromeos": "Ctrl+Shift+Space",
"linux": "Ctrl+Shift+Space",
"default": "Ctrl+Shift+Space"
}
}
},
"permissions": [
"activeTab",
"storage",
"clipboardWrite",
"identity",
"alarms",
"notifications"
],
"optional_permissions": [
"https://*/",
"http://*/",
"file:///*/"
],
"static_data": {
"dropbox" : {
"client_id": "lau0eigo4cfthqz"
},
"onedrive" : {
"client_id" : "f4c55645-3f43-4f8e-a7d2-ec167b416f1d"
},
"gdrive": {
"client_id": "876467817034-rlas0hnb5jc9dt1qmp11l6g4724ktoqn.apps.googleusercontent.com"
},
"pcloud": {
"client_id": "1NklWhTApYR"
}
}
}