-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 872 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
34
35
36
37
38
39
40
41
42
{
"name": "A-Deck",
"description": "extension for A-(dding websites to Nextcloud) Deck",
"version": "2.1",
"manifest_version": 3,
"author": "Leonard Ossa",
"homepage_url": "https://github.com/leoossa/A-deck",
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage",
"activeTab",
"scripting",
"contextMenus",
"tabs"
],
"host_permissions": [
"https://*/"
],
"action": {
"default_title": "Add this website to Deck!",
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"icons": {
"512": "icon.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "MacCtrl+Shift+S"
},
"description": "Opens popup"
}
}
}