-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
60 lines (59 loc) · 1.19 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
{
"manifest_version": 2,
"name": "Unicode Keyboard",
"version": "0.3",
"description": "A keyboard-navigable Input panel that can search unicode characters by character name, code block and general category. Focus on a text area and press Alt+U to open. Alt+U to close again.",
"commands": {
"open-keyboard": {
"suggested_key": {
"default": "Alt+U"
},
"description": "Toggle/Focus the input panel"
},
"latex-input": {
"suggested_key": {
"default": "Alt+Shift+L"
},
"description": "Enable latex input mode"
}
},
"icons": {
"48": "64.png",
"96": "96.png",
"128": "128.png"
},
"background": {
"scripts": ["lib/latex-to-unicode.js","background/ucd.js","background/main.js"]
},
"permissions": ["storage", "activeTab", "tabs"],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/top.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"content/frame.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"applications": {
"gecko": {
"id": "unicode-keyboard@the8472",
"strict_min_version": "48.0"
}
},
"web_accessible_resources": [
"web/*.html",
"web/*.js"
]
}