TeX for Gmail

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

TeX for Gmail क्या है?

TeX for Gmail https://alexeev.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use LaTeX (a method for rendering mathematical formulas) with Gmail."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TeX for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}