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
Eメール [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
    }
}