diff options
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..4dbdacb --- /dev/null +++ b/manifest.json @@ -0,0 +1,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" + } + } +} |