-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.41 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
{
"manifest_version": 3,
"minimum_chrome_version": "121",
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"version": "1.4.3",
"author": "Gelencsér Gergő",
"homepage_url": "https://programmerg.github.io/quick-access/",
"default_locale": "en",
"icons": {
"16": "images/icon-16.png",
"24": "images/icon-24.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png"
},
"permissions": [
"favicon",
"sidePanel",
"storage",
"unlimitedStorage"
],
"optional_permissions": [
"bookmarks",
"history",
"readingList",
"tabs",
"tabGroups",
"topSites"
],
"browser_specific_settings": {
"gecko": {
"id": "@quick-access.programmerg.github.io"
}
},
"background": {
"scripts": ["service-worker.js"],
"service_worker": "service-worker.js"
},
"chrome_url_overrides": {
"newtab": "index.html?context=newtab"
},
"action": {
"default_title": "__MSG_open_side_panel__"
},
"side_panel": {
"default_path": "index.html?context=side_panel"
},
"sidebar_action": {
"default_icon": "images/icon.png",
"default_title" : "__MSG_app_name__",
"default_panel": "index.html?context=side_panel"
}
}