-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (26 loc) · 566 Bytes
/
Copy pathmanifest.json
File metadata and controls
30 lines (26 loc) · 566 Bytes
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
{
"manifest_version": 3,
"name": "Save All Tab URLs",
"description": "Get the raw URLs of all your open tabs!",
"version": "0.2.0",
"background": {
"service_worker": "background.js",
"type": "module",
"scripts": ["background.js"]
},
"icons": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png",
"256": "icons/logo-256.png"
},
"action": {
"default_icon": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png",
"256": "icons/logo-256.png"
}
},
"permissions": [
"tabs"
]
}