TeX All the Things

An extension which lets you enable LaTeX on any website

TeX All the Thingsคืออะไร?

TeX All the Things เป็นส่วนขยายของ Chrome ที่พัฒนาโดย emichael และคุณลักษณะหลักของมันคือ "An extension which lets you enable LaTeX on any website"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TeX All the Things

ดาวน์โหลดไฟล์ส่วนขยาย TeX All the Things ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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