{ "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" } } }