Text Macros & LaTeX
Text macros and a LaTeX preset
Was ist Text Macros & LaTeX?
Text Macros & LaTeX ist eine Chrome-Erweiterung, die von quelklef entwickelt wurde, und ihr Hauptmerkmal ist "Text macros and a LaTeX preset".
Erweiterungsscreenshots
Text Macros & LaTeX-Erweiterungs-CRX-Datei herunterladen
Laden Sie Text Macros & LaTeX-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | jhhepajjmildgenepcmloaadelagfmkd | 
| Offizielle URL | https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd | 
| Beschreibung | Text macros and a LaTeX preset | 
| Dateigröße | 46.79 KB | 
| Installationsanzahl | 14 | 
| Aktuelle Version | 1.4.0 | 
| Letztes Update | 2021-03-05 | 
| Veröffentlichungsdatum | 2019-06-13 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | quelklef | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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"
    }
}  |  |