-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
80 lines (80 loc) · 2.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Format Link",
"version": "5.4.1",
"manifest_version": 2,
"description": "Format a link and copy it to the clipboard.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"applications": {
"gecko": {
"id": "pocemhmkmchpgamlnocemnbhlcjcbjgg@chrome-store-foxified-2931337014"
}
},
"background": {
"scripts": [
"common.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Format Link",
"default_popup": "popup.html",
"browser_style": true
},
"options_ui": {
"page": "options.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": { "default": "Shift+Alt+C" },
"description": "Copy a link in the default format"
},
"copy-link-in-format1": {
"suggested_key": { "default": "Shift+Alt+1" },
"description": "Copy a link in format 1"
},
"copy-link-in-format2": {
"suggested_key": { "default": "Shift+Alt+2" },
"description": "Copy a link in format 2"
},
"copy-link-in-format3": {
"suggested_key": { "default": "Shift+Alt+3" },
"description": "Copy a link in format 3"
},
"copy-link-in-format4": {
"suggested_key": { "default": "Shift+Alt+4" },
"description": "Copy a link in format 4"
},
"copy-link-in-format5": {
"suggested_key": { "default": "Shift+Alt+5" },
"description": "Copy a link in format 5"
},
"copy-link-in-format6": {
"suggested_key": { "default": "Shift+Alt+6" },
"description": "Copy a link in format 6"
},
"copy-link-in-format7": {
"suggested_key": { "default": "Shift+Alt+7" },
"description": "Copy a link in format 7"
},
"copy-link-in-format8": {
"suggested_key": { "default": "Shift+Alt+8" },
"description": "Copy a link in format 8"
},
"copy-link-in-format9": {
"suggested_key": { "default": "Shift+Alt+9" },
"description": "Copy a link in format 9"
}
},
"permissions": [
"activeTab",
"clipboardWrite",
"contextMenus",
"storage",
"tabs"
]
}