-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 867 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
{
"name": "URL Gathering Tool",
"description": "An extension that gathers all URLs currently open in browser, allowing them to be easily copied.",
"version": "0.0.4",
"manifest_version": 3,
"offline_enabled": true,
"background": {
"service_worker": "vendor/serviceWorker.js"
},
"permissions": [
"tabs",
"storage"
],
"icons": {
"16": "asset/img/16.png",
"32": "asset/img/32.png",
"180": "asset/img/180.png",
"192": "asset/img/192.png",
"512": "asset/img/512.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "asset/img/16.png",
"32": "asset/img/32.png",
"180": "asset/img/180.png",
"192": "asset/img/192.png",
"512": "asset/img/512.png"
}
}
}