-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (42 loc) · 1.24 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
{
"manifest_version": 2,
"name": "TeX Math Here",
"version": "0.7.11",
"description": "Use the TeX markup language to take math here, there, or just about anywhere that images are supported.",
"icons": {
"128": "images/texhere/texhere.128.png",
"48": "images/texhere/texhere.48.png",
"32": "images/texhere/texhere.32.png"
},
"background": {
"scripts": ["latex_transport.js"]
},
"permissions": ["clipboardWrite"],
"browser_action": {
"default_icon": {
"128": "images/texhere/texhere.128.png"
},
"default_title": "TeX Math Here",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [ "*://docs.google.com/document/*", "*://docs.google.com/presentation/*" ],
"js": [ "dblclick_edit.js" ]
},
{
"matches": [ "*://mail.google.com/*" ],
"js": [ "dblclick_gmail_edit.js" ]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"linux": "Ctrl+Shift+U",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U"
}
}
}
}