Text Macros & LaTeX
Text macros and a LaTeX preset
Wat is Text Macros & LaTeX?
Text Macros & LaTeX is een Chrome-extensie ontwikkeld door quelklef, en de belangrijkste functie is "Text macros and a LaTeX preset".
Extensie Screenshots
Download het CRX-bestand van de extensie Text Macros & LaTeX
Download Text Macros & LaTeX-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Text Macros & LaTeX |
ID | jhhepajjmildgenepcmloaadelagfmkd |
Officiële URL | https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd |
Beschrijving | Text macros and a LaTeX preset |
Bestandsgrootte | 46.79 KB |
Aantal Installaties | 14 |
Huidige Versie | 1.4.0 |
Laatst Bijgewerkt | 2021-03-05 |
Publicatiedatum | 2019-06-13 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | quelklef |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |