MathJax 3 Plugin for Github

Renders Github equations with MathJax 3

Hvad er MathJax 3 Plugin for Github?

MathJax 3 Plugin for Github er en Chrome-udvidelse udviklet af Sam Ritchie, og dens hovedfunktion er "Renders Github equations with MathJax 3".

Udvidelsesskærmbilleder

screenshot

Download MathJax 3 Plugin for Github-udvidelses-CRX-fil

Download MathJax 3 Plugin for Github-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn MathJax 3 Plugin for Github MathJax 3 Plugin for Github
ID peoghobgdhejhcmgoppjpjcidngdfkod
Officiel URL https://chromewebstore.google.com/detail/mathjax-3-plugin-for-gith/peoghobgdhejhcmgoppjpjcidngdfkod
Beskrivelse Renders Github equations with MathJax 3
Filstørrelse 2.05 MB
Antal Installationer 1,724
Nuværende Version 0.3.3
Senest Opdateret 2020-06-05
Udgivelsesdato 2020-06-04
Bedømmelse 4.60/5 Samlet 5 Bedømmelser
Udvikler Sam Ritchie
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/sritchie/github-mathjax
Hjælpeside-URL https://github.com/sritchie/github-mathjax/issues
Understøttede Sprog 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"
    }
}