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
|
{
"manifest_version": 3,
"name": "TeX Type",
"version": "0.1.0",
"description": "Converts commands (some TeX) in textboxes to unicode as one types.",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png"
},
"permissions": ["storage"],
"content_scripts": [{
"matches": ["*://*/*"],
"js": [
"lib/extension.js",
"init-unicode-maps.js",
"unicode-maps-to-bold.js",
"unicode-maps-to-subscript.js",
"unicode-maps-to-superscript.js",
"page.js"
]
}],
"action": {
"default_popup": "popup.html",
"default_title": "TeX Type Settings"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "tex-type@pml4t.net"
}
}
}
|