GitHub Math Display

Displays LaTeX math equations in GitHub markdown previews.

Co je GitHub Math Display?

GitHub Math Display je rozšíření Chrome vyvinuté AaronCQL, a jeho hlavní funkcí je „Displays LaTeX math equations in GitHub markdown previews.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub Math Display

Stáhněte si soubory rozšíření GitHub Math Display ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Features:
- Only targets Markdown previews: code blocks and code previews will not be affected
- Fast and efficient rendering using KaTeX
- Supports current GitHub website: including internal navigations, and when previewing an edited Markdown file                    

Základní Informace o Rozšíření

Název GitHub Math Display GitHub Math Display
ID cgolaobglebjonjiblcjagnpmdmlgmda
Oficiální URL https://chromewebstore.google.com/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda
Popis Displays LaTeX math equations in GitHub markdown previews.
Velikost souboru 1.09 MB
Počet instalací 849
Aktuální Verze 0.3.7
Poslední Aktualizace 2022-03-25
Datum Vydání 2020-07-30
Hodnocení 5.00/5 Celkem 7 Hodnocení
Vývojář AaronCQL
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/AaronCQL/katex-github-chrome-extension
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Math Display",
    "version": "0.3.7",
    "description": "Displays LaTeX math equations in GitHub markdown previews.",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index-b8a067f0.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "assets\/katex.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "assets\/background-c76225da.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "index.js",
        "assets\/fonts\/*",
        "constants-d1d9f3fd.js"
    ],
    "permissions": [
        "webNavigation",
        "*:\/\/*.github.com\/*"
    ]
}