TeX All the Things

An extension which lets you enable LaTeX on any website

TeX All the Things란 무엇입니까?

TeX All the Things은(는) emichael에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension which lets you enable LaTeX on any website"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

TeX All the Things 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Typesets any LaTeX found on webpages using MathJax (http://www.mathjax.org/).

§ HOW TO USE §
Inline math can be typed with:
    $y = 3x + 2$
or
    [;y = 3x + 2;]

Display mode math can be typed with:
    $$\sum_{i = 0}^n {n \choose i} x^{i} y^{n-i}$$
or
    \[\sum_{i = 0}^n {n \choose i} x^{i} y^{n-i}\]

Use the options menu to customize which domains the extension typesets and even set your own custom delimiters for inline and display math.

Click the extension's toolbar button to disable/re-enable typesetting on every domain.


§ HELP MAKE THIS BETTER §
This Chrome Extension is open source. See a problem or want to make an improvement? Report bugs and send me pull requests on GitHub!

https://github.com/emichael/texthings                    

확장 프로그램 기본 정보

이름 TeX All the Things TeX All the Things
ID cbimabofgmfdkicghcadidpemeenbffn
공식 URL https://chromewebstore.google.com/detail/tex-all-the-things/cbimabofgmfdkicghcadidpemeenbffn
설명 An extension which lets you enable LaTeX on any website
파일 크기 70.04 KB
설치 횟수 40,000
현재 버전 1.1.5
최근 업데이트 2021-11-29
출시 날짜 2018-07-07
평점 3.99/5 총 91 개의 평점
개발자 emichael
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/emichael/texthings
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TeX All the Things",
    "short_name": "TeX Things",
    "author": "emichael",
    "description": "An extension which lets you enable LaTeX on any website",
    "version": "1.1.5",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "img\/browser38.png",
            "19": "img\/browser19.png"
        },
        "default_title": "TeX All the Things"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/texify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/options.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "js\/pageScript.js"
    ],
    "options_page": "options.html"
}