-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 978 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
43
44
45
46
{
"manifest_version": 3,
"name": "Tab Tree Tracker",
"version": "1.0",
"description": "Tracks browser history in a tree structure",
"permissions": [
"tabs",
"activeTab",
"storage",
"webNavigation",
"scripting",
"alarms",
"fileSystem"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/inactive_16.png",
"32": "icons/inactive_32.png",
"48": "icons/inactive_48.png",
"128": "icons/inactive_128.png"
}
},
"icons": {
"16": "icons/inactive_16.png",
"32": "icons/inactive_32.png",
"48": "icons/inactive_48.png",
"128": "icons/inactive_128.png"
},
"web_accessible_resources": [{
"resources": [
"viewer/*",
"viewer/components/*",
"libs/*"
],
"matches": ["<all_urls>"]
}]
}