-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 950 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
30
31
32
33
{
"name": "OpenPGP Email Lookup",
"description": "Check if there is a PGP key in the OpenPGP keyserver associated with the mailto: links on the current page. The lookup is done on click of the extension icon or by pressing Ctrl+Shift+Z (Command+Shift+Z on Mac).",
"version": "0.0.9",
"manifest_version": 3,
"author": "Joep de Jong",
"action": {
"default_title": "Retrieve PGP keys"
},
"icons": {
"64": "img/icon-64.png"
},
"incognito": "split",
"permissions": [
"activeTab",
"scripting",
"notifications",
"nativeMessaging"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z",
"chromeos": "Ctrl+Shift+Z",
"linux": "Ctrl+Shift+Z"
}
}
}
}