From 76debe0071fef6865bd0fb79199f53932bf063c0 Mon Sep 17 00:00:00 2001 From: Radu Date: Sat, 26 Aug 2023 17:29:35 -0400 Subject: Write a working version and include licences Support some symbols, arrows, bold, subscript and superscript. --- manifest.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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" + } + } +} -- cgit v1.2.3