-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
executable file
·76 lines (67 loc) · 1.8 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
{
"default_locale": "en",
"name": "__MSG_ext_name__",
"version": "1.2.1",
"manifest_version": 2,
"description": "__MSG_ext_desc__",
"background": {
"page": "background.html"
},
"browser_action": {
"default_title": "__MSG_browser_action_title__",
"default_popup": "popup.html",
"default_icon": {
"19": "/img/icon-16.png",
"38": "/img/icon-32.png"
}
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "/js/copybetter.js" ],
"css": [ "/css/copybetter.css" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_start"
} ],
"commands": {
"cmd_copy_curtab_in_html": {
"description": "__MSG_cmd_copy_curtab_in_html__",
"suggested_key": {
"default": "Alt+Y"
}
},
"cmd_copy_curtab_in_text": {
"description": "__MSG_cmd_copy_curtab_in_text__",
"suggested_key": {
"default": "Ctrl+Y",
"mac": "MacCtrl+Y"
}
},
"cmd_copy_alltabs_in_html": {
"description": "__MSG_cmd_copy_alltabs_in_html__",
"suggested_key": {
"default": "Alt+Shift+Y"
}
},
"cmd_copy_alltabs_in_text": {
"description": "__MSG_cmd_copy_alltabs_in_text__",
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "MacCtrl+Shift+Y"
}
}
},
"icons": {
"16": "/img/icon-16.png",
"32": "/img/icon-32.png",
"48": "/img/icon-48.png",
"64": "/img/icon-64.png",
"128": "img/icon-128.png"
},
"permissions": [
"https://*/*", "http://*/*", "clipboardWrite", "tabs", "notifications"
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}