TeX for Gmail

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

What is TeX for Gmail?

TeX for Gmail is a Chrome extension developed by https://alexeev.org, and its main feature is "Use LaTeX (a method for rendering mathematical formulas) with Gmail.".

Extension Screenshots

screenshot

Download TeX for Gmail Extension CRX File

Download TeX for Gmail extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name TeX for Gmail TeX for Gmail
ID gjnmclkoadjdljnfmbnnhaahilafoeji
Official URL https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji
Description Use LaTeX (a method for rendering mathematical formulas) with Gmail.
File Size 154 KB
Installation Count 60,000
Current Version 6.7.3
Last Updated 2020-11-23
Publish Date 2020-04-02
Rating 4.62/5 Total 353 Ratings
Developer https://alexeev.org
Email [email protected]
Payment Type free
Extension Website http://alexeev.org/gmailtex.html
Help Page URL http://alexeev.org/help.html
Privacy Policy Page URL http://alexeev.org/privacy.html
Supported Languages 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
    }
}