Text Macros & LaTeX
Text macros and a LaTeX preset
Vad är Text Macros & LaTeX?
Text Macros & LaTeX är en Chrome-tillägg utvecklad av quelklef, och dess huvudfunktion är "Text macros and a LaTeX preset".
Tilläggsskärmbilder
Ladda ner Text Macros & LaTeX-förlängningens CRX-fil
Ladda ner Text Macros & LaTeX-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Text Macros & LaTeX |
ID | jhhepajjmildgenepcmloaadelagfmkd |
Officiell webbadress | https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd |
Beskrivning | Text macros and a LaTeX preset |
Filstorlek | 46.79 KB |
Antal Installationer | 14 |
Aktuell Version | 1.4.0 |
Senast Uppdaterad | 2021-03-05 |
Publiceringsdatum | 2019-06-13 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | quelklef |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |