Text Macros & LaTeX
Text macros and a LaTeX preset
What is Text Macros & LaTeX?
Text Macros & LaTeX is a Chrome extension developed by quelklef, and its main feature is "Text macros and a LaTeX preset".
Extension Screenshots
Download Text Macros & LaTeX Extension CRX File
Download Text Macros & LaTeX extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Replace LaTeX commands such as \forall and \exists with their respective unicode symbols. Also allows for custom macros. NOTE: I would recommend using a LaTeX input method instead of this extension. Input methods will work in all applications, not just Chrome. Because input methods are such a good alternative, development on this extension is stopped.
Extension Basic Information
Name | Text Macros & LaTeX |
ID | jhhepajjmildgenepcmloaadelagfmkd |
Official URL | https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd |
Description | Text macros and a LaTeX preset |
File Size | 46.79 KB |
Installation Count | 14 |
Current Version | 1.4.0 |
Last Updated | 2021-03-05 |
Publish Date | 2019-06-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | quelklef |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Text Macros & LaTeX", "version": "1.4.0", "description": "Text macros and a LaTeX preset", "permissions": [ "storage" ], "background": { "scripts": [ "onInstalled.js", "iconController.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [], "js": [ "macros.js", "presets.js", "runtime.js" ] } ], "options_page": "options.html", "browser_action": { "default_icon": "icon-128x.png", "default_title": "Macros and LaTeX" }, "icons": { "128": "icon-128x.png" } } |