MathJax 3 Plugin for Github

Renders Github equations with MathJax 3

MathJax 3 Plugin for Githubとは何ですか?

MathJax 3 Plugin for GithubはSam Ritchieによって開発されたChromeの拡張機能で、その主な機能は「Renders Github equations with MathJax 3」です。

拡張機能のスクリーンショット

screenshot

MathJax 3 Plugin for Github拡張機能のCRXファイルをダウンロード

MathJax 3 Plugin for Github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 MathJax 3 Plugin for Github MathJax 3 Plugin for Github
ID peoghobgdhejhcmgoppjpjcidngdfkod
公式URL https://chromewebstore.google.com/detail/mathjax-3-plugin-for-gith/peoghobgdhejhcmgoppjpjcidngdfkod
説明 Renders Github equations with MathJax 3
ファイルサイズ 2.05 MB
インストール数 1,724
現在のバージョン 0.3.3
最終更新日 2020-06-05
公開日 2020-06-04
評価 4.60/5 合計 5 レビュー
開発者 Sam Ritchie
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sritchie/github-mathjax
ヘルプページのURL https://github.com/sritchie/github-mathjax/issues
対応言語 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"
    }
}