MathJax 3 Plugin for Github

Renders Github equations with MathJax 3

Cos'è MathJax 3 Plugin for Github?

MathJax 3 Plugin for Github è un'estensione di Chrome sviluppata da Sam Ritchie, e la sua funzione principale è "Renders Github equations with MathJax 3".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione MathJax 3 Plugin for Github

Scarica i file di estensione MathJax 3 Plugin for Github in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This plugin renders LaTeX equations on any page on Github using the wonderful MathJax library, version 3.0.

the only thing you need to do to get this working in Markdown files on Github is to either use:

- `$a = b$` or `$$a = b$$` format, or
- escape your backslash, like `\\(a = bc\\)` or `\\[a = bc\\]`

You don't need to escape markdown in your code comments. They'll render just fine.                    

Informazioni di Base sull'Estensione

Nome MathJax 3 Plugin for Github MathJax 3 Plugin for Github
ID peoghobgdhejhcmgoppjpjcidngdfkod
URL Ufficiale https://chromewebstore.google.com/detail/mathjax-3-plugin-for-gith/peoghobgdhejhcmgoppjpjcidngdfkod
Descrizione Renders Github equations with MathJax 3
Dimensione del File 2.05 MB
Conteggio Installazioni 1,724
Versione Corrente 0.3.3
Ultimo Aggiornamento 2020-06-05
Data di Pubblicazione 2020-06-04
Valutazione 4.60/5 Totale 5 Valutazioni
Sviluppatore Sam Ritchie
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sritchie/github-mathjax
URL della Pagina di Aiuto https://github.com/sritchie/github-mathjax/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MathJax 3 Plugin for Github",
    "description": "Renders Github equations with MathJax 3",
    "version": "0.3.3",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "web_accessible_resources": [
        "mathjax_config.js",
        "scripts\/require236.js",
        "scripts\/jquery-1.11.3.min.js",
        "scripts\/mathjax3.js",
        "scripts\/dynamic_math.js",
        "scripts\/a11y\/*",
        "scripts\/input\/*",
        "scripts\/output\/*",
        "scripts\/sre\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "scripts\/jquery-1.11.3.min.js",
                "scripts\/require236.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}