-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
56 lines (56 loc) · 1.16 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://codeberg.org/Offerel/SyncMarks-Extension",
"version": "2.1.1",
"author": "Offerel",
"manifest_version": 3,
"default_locale": "en",
"background": {
"service_worker": "scripts/background.js",
"scripts": ["scripts/background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "davmarks@example.org"
}
},
"action": {
"default_title": "__MSG_extensionName__"
},
"commands": {
"bookmark-tab": {
"description": "__MSG_bookmarkTab__",
"suggested_key": {
"default": "Ctrl+Q"
}
}
},
"icons": {
"48": "icons/bookmark.png"
},
"options_ui": {
"open_in_tab": true,
"page": "scripts/options.html"
},
"permissions": [
"bookmarks",
"storage",
"notifications",
"contextMenus",
"activeTab"
],
"optional_host_permissions": [
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"icons/bookmark.png"
],
"matches": [
"*://*/*"
]
}
]
}