TeX for Gmail

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

什么是TeX for Gmail?

TeX for Gmail是由https://alexeev.org开发的Chrome扩展程序,该扩展的主要功能是“Use LaTeX (a method for rendering mathematical formulas) with Gmail.”。

扩展截图

screenshot

下载TeX for Gmail扩展crx文件

下载TeX for Gmail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 TeX for Gmail TeX for Gmail
ID gjnmclkoadjdljnfmbnnhaahilafoeji
官方URL https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji
简介 Use LaTeX (a method for rendering mathematical formulas) with Gmail.
文件大小 154 KB
安装次数 60,000
当前版本 6.7.3
更新时间 2020-11-23
上架时间 2020-04-02
评分 4.62/5 共353次评分
开发者 https://alexeev.org
电子邮箱 [email protected]
付费类型 free
扩展官网 http://alexeev.org/gmailtex.html
帮助页面URL http://alexeev.org/help.html
隐私政策页面URL http://alexeev.org/privacy.html
支持的语言 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
    }
}