forked from GoogleChromeLabs/link-to-text-fragment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 948 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
{
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"version": "2.4.0",
"description": "__MSG_extension_description__",
"background": {
"service_worker": "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__"
}
}
}