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
官方網址 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
    }
}