Text Macros & LaTeX

Text macros and a LaTeX preset

Co to jest Text Macros & LaTeX?

Text Macros & LaTeX to rozszerzenie Chrome opracowane przez quelklef, a jego główną funkcją jest „Text macros and a LaTeX preset”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Text Macros & LaTeX

Pobierz pliki rozszerzeń Text Macros & LaTeX w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Text Macros & LaTeX Text Macros & LaTeX
ID jhhepajjmildgenepcmloaadelagfmkd
Oficjalny URL https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd
Opis Text macros and a LaTeX preset
Rozmiar pliku 46.79 KB
Liczba instalacji 14
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2021-03-05
Data Publikacji 2019-06-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper quelklef
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}