-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·52 lines (52 loc) · 1.16 KB
/
manifest.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.16 KB
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
48
49
50
51
52
{
"name": "Format Link",
"version": "5.1.0",
"manifest_version": 3,
"description": "Format a link and copy it to the clipboard.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"commands": {
"format-link-format-default": {
"suggested_key": { "default": "Shift+Alt+C" },
"description": "Copy a link in the default format"
},
"format-link-format1": {
"suggested_key": { "default": "Shift+Alt+1" },
"description": "Copy a link in format 1"
},
"format-link-format2": {
"suggested_key": { "default": "Shift+Alt+2" },
"description": "Copy a link in format 2"
},
"format-link-format3": {
"suggested_key": { "default": "Shift+Alt+3" },
"description": "Copy a link in format 3"
}
},
"permissions": [
"activeTab",
"clipboardWrite",
"contextMenus",
"storage"
]
}