forked from dafizilla/firefox-table2clipboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (43 loc) · 938 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
46
47
48
49
50
{
"manifest_version": 2,
"name": "Table2Clipboard",
"version": "1.6.2.0",
"description": "Allow to copy to clipboard an HTML table rows/columns selection correctly formatted.",
"applications": {
"gecko": {
"id": "t2c@shirosaki",
"strict_min_version": "60.0"
}
},
"icons": {
"16": "icons/t2c-16x16.png",
"32": "icons/t2c-32x32.png",
"64": "icons/t2c-64x64.png",
"128": "icons/t2c-128x128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"copy-selected-cells": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Copy selected cells to clipboard"
}
},
"options_ui": {
"browser_style": true,
"page": "src/main/content/t2c/settings/settings.html"
},
"permissions": [
"<all_urls>",
"activeTab",
"menus",
"storage",
"clipboardWrite"
],
"default_locale": "en"
}