Text Macros & LaTeX

Text macros and a LaTeX preset

Cos'è Text Macros & LaTeX?

Text Macros & LaTeX è un'estensione di Chrome sviluppata da quelklef, e la sua funzione principale è "Text macros and a LaTeX preset".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Text Macros & LaTeX

Scarica i file di estensione Text Macros & LaTeX in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Text Macros & LaTeX Text Macros & LaTeX
ID jhhepajjmildgenepcmloaadelagfmkd
URL Ufficiale https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd
Descrizione Text macros and a LaTeX preset
Dimensione del File 46.79 KB
Conteggio Installazioni 14
Versione Corrente 1.4.0
Ultimo Aggiornamento 2021-03-05
Data di Pubblicazione 2019-06-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore quelklef
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}