Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manifest.json « keepassxc-browser - github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7973a9588b09719b8c2f9eefcecd20109168cc90 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
	"manifest_version": 2,
	"name": "keepassxc-browser",
	"version": "0.3.1",
	"description": "KeePassXC integration for modern web browsers",
	"author": "Sami Vänttinen",
	"icons": {
		"16": "icons/keepassxc_16x16.png",
		"48": "icons/keepassxc_48x48.png",
		"128": "icons/keepassxc_128x128.png"
	},

	"browser_action": {
		"default_icon": {
		  "19": "icons/keepassxc_19x19.png",
		  "38": "icons/keepassxc_38x38.png"
		},
		"default_title": "keepassxc-browser",
		"default_popup": "popups/popup.html"
	},
	"options_ui": {
		"page": "options/options.html",
		"open_in_tab": true
	},
	"background": {
		"scripts": [
			"browser-polyfill.min.js",
			"global.js",
			"background/nacl.min.js",
			"background/nacl-util.min.js",
			"background/keepass.js",
			"background/httpauth.js",
			"background/browserAction.js",
			"background/page.js",
			"background/event.js",
			"background/init.js"
			]
		},
	"content_scripts": [
		{
			"matches": [
				"<all_urls>"
			],
			"js": [ 
				"browser-polyfill.min.js",
				"global.js",
				"jquery-3.2.1.min.js",
				"jquery-ui.min.js",
				"keepassxc-browser.js"
			],
			"css": [
				"jquery-ui.min.css",
				"keepassxc-browser.css"
			],
			"run_at": "document_idle",
			"all_frames": true
		}
	],
	"commands": {
		"fill-username-password": {
			"description": "Insert username + password",
			"suggested_key": {
				"default": "Ctrl+Shift+U",
				"mac": "Command+Shift+U"
			}
		},
		"fill-password": {
			"description": "Insert a password",
			"suggested_key": {
				"default": "Ctrl+Shift+P",
				"mac": "Command+Shift+P"
			}
		}
	},
	"web_accessible_resources": [
		"icons/key.png"
	],
	"permissions": [
		"activeTab",
		"contextMenus",
		"clipboardWrite",
		"nativeMessaging",
		"storage",
		"tabs",
		"webRequest",
		"webRequestBlocking",
		"https://*/*",
		"http://*/*",
		"https://api.github.com/"
	],
	"applications": {
       "gecko": {
           "id": "keepassxc-browser@sami.vanttinen",
           "strict_min_version": "55.0"
       }
   }
}