-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
45 lines (45 loc) · 1010 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
{
"manifest_version": 2,
"name": "URLs List",
"version": "0.6.0",
"description": "List the URLs of all tabs from the current window as copyable plaintext.",
"homepage_url": "https://github.com/moritz-h/urls-list",
"browser_specific_settings": {
"gecko": {
"id": "{88664789-f91e-40e1-adb9-e4e9a8c48867}",
"strict_min_version": "115.0"
}
},
"permissions": [
"activeTab",
"clipboardWrite",
"contextMenus",
"notifications",
"storage",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/icon.svg",
"default_title": "URLs List",
"default_popup": "popup/urls-list.html",
"theme_icons": [{
"light": "icons/icon-light.svg",
"dark": "icons/icon.svg",
"size": 16
}]
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
}
}