MathJax 3 Plugin for Github

Renders Github equations with MathJax 3

O que é MathJax 3 Plugin for Github?

MathJax 3 Plugin for Github é uma extensão do Chrome desenvolvida por Sam Ritchie, e sua principal característica é "Renders Github equations with MathJax 3".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MathJax 3 Plugin for Github

Baixe arquivos de extensão MathJax 3 Plugin for Github no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome MathJax 3 Plugin for Github MathJax 3 Plugin for Github
ID peoghobgdhejhcmgoppjpjcidngdfkod
URL Oficial https://chromewebstore.google.com/detail/mathjax-3-plugin-for-gith/peoghobgdhejhcmgoppjpjcidngdfkod
Descrição Renders Github equations with MathJax 3
Tamanho do Arquivo 2.05 MB
Contagem de Instalações 1,724
Versão Atual 0.3.3
Última Atualização 2020-06-05
Data de Publicação 2020-06-04
Classificação 4.60/5 Total de 5 Avaliações
Desenvolvedor Sam Ritchie
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sritchie/github-mathjax
URL da Página de Ajuda https://github.com/sritchie/github-mathjax/issues
Idiomas Suportados 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"
    }
}