aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 3bf0b83a2b35f16381a804ab82855cbcb3afcb01 (plain)
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
{
  "manifest_version": 3,
  "name": "TeX Type",
  "version": "0.1.0",
  "description": "Converts commands (some TeX) in textboxes to unicode as one types.",
  "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"
    }
  }
}