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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}