aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 4dbdacbe0e8970c8af9f954eb7c34bbf343d4818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "manifest_version": 3,
  "name": "TeX Type",
  "version": "0.1.0",
  "description": "Converts commands (some TeX) in textboxes to unicode as one types.",
  "content_scripts": [{
    "matches": ["*://*/*"],
    "js": [
      "init-unicode-maps.js",
      "unicode-maps-to-bold.js",
      "unicode-maps-to-subscript.js",
      "unicode-maps-to-superscript.js",
      "page.js"
    ]
  }],
  "browser_specific_settings": {
    "gecko": {
      "id": "tex-type@pml4t.net"
    }
  }
}