TeX for Gmail

Use LaTeX (a method for rendering mathematical formulas) with Gmail.

Cos'è TeX for Gmail?

TeX for Gmail è un'estensione di Chrome sviluppata da https://alexeev.org, e la sua funzione principale è "Use LaTeX (a method for rendering mathematical formulas) with Gmail.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TeX for Gmail

Scarica i file di estensione TeX for Gmail 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

                        Typeset math in the outgoing and incoming messages. The other person does not have to have TeX for Gmail installed or to use Gmail. Math is viewable in most mail readers and browsers, including mobile ones.                    

Informazioni di Base sull'Estensione

Nome TeX for Gmail TeX for Gmail
ID gjnmclkoadjdljnfmbnnhaahilafoeji
URL Ufficiale https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji
Descrizione Use LaTeX (a method for rendering mathematical formulas) with Gmail.
Dimensione del File 154 KB
Conteggio Installazioni 60,000
Versione Corrente 6.7.3
Ultimo Aggiornamento 2020-11-23
Data di Pubblicazione 2020-04-02
Valutazione 4.62/5 Totale 353 Valutazioni
Sviluppatore https://alexeev.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://alexeev.org/gmailtex.html
URL della Pagina di Aiuto http://alexeev.org/help.html
URL della Pagina della Politica sulla Privacy http://alexeev.org/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TeX for Gmail",
    "description": "Use LaTeX (a method for rendering mathematical formulas) with Gmail.",
    "version": "6.7.3",
    "permissions": [
        "storage",
        "https:\/\/mail.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "options.js",
                "texforgmail.js",
                "app.js"
            ],
            "css": [
                "style.css",
                "popups.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "logo128.png",
        "compose.png",
        "view.png"
    ],
    "icons": {
        "128": "logo128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "logo128.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": true
    }
}