-
Notifications
You must be signed in to change notification settings - Fork 34
/
manifest.json
47 lines (47 loc) · 1.07 KB
/
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
47
{
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"version": "2.5.0",
"description": "__MSG_extension_description__",
"background": {
"service_worker": "service_worker.js",
"scripts": ["service_worker.js"],
"type": "module"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"action": {},
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite",
"storage",
"scripting",
"offscreen"
],
"optional_host_permissions": ["http://*/*", "https://*/*"],
"manifest_version": 3,
"icons": {
"16": "assets/16x16.png",
"32": "assets/32x32.png",
"192": "assets/192x192.png",
"128": "assets/128x128.png",
"180": "assets/180x180.png",
"512": "assets/512x512.png",
"1024": "assets/1024x1024.png"
},
"default_locale": "en",
"minimum_chrome_version": "88",
"commands": {
"copy_link": {
"description": "__MSG_copy_link__"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{c13e9f22-6988-4543-86b9-b71bc7e71560}"
}
}
}