MathJax Plugin for Github

Renders Github equations with MathJax

MathJax Plugin for Githubとは何ですか?

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

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Extension add support for LaTeX equations in GitHub repositories, rendering them with an open source [MathJax](http://mathjax.org/) library.

Right-Click on equation to show MathJax's context menu with additional options, e.g. "Scale All Math..." to instantly scale all equations on a page, "TeX commands" to see the source TeX equation etc.

Extension is published under [New BSD License](https://github.com/orsharir/github-mathjax/blob/master/LICENSE.md) with the source code available [here](https://github.com/orsharir/github-mathjax). This extension is based on the __wonderful__ [wiki_mathjax](https://github.com/bgromov/wiki-mathjax) extension by [Boris Gromov](https://github.com/bgromov), and its license is included as part of LICENSE.md in this repository.

For bug reports and feature requests, please use [Issue tracker](https://github.com/orsharir/github-mathjax/issues).                    

拡張機能の基本情報

名前 MathJax Plugin for Github MathJax Plugin for Github
ID ioemnmodlmafdkllaclgeombjnmnbima
公式URL https://chromewebstore.google.com/detail/mathjax-plugin-for-github/ioemnmodlmafdkllaclgeombjnmnbima
説明 Renders Github equations with MathJax
ファイルサイズ 796 KB
インストール数 23,294
現在のバージョン 0.2.4
最終更新日 2019-03-08
公開日 2019-03-08
評価 4.38/5 合計 47 レビュー
開発者 Or Sharir
支払い方法 free
拡張機能のウェブサイト https://github.com/orsharir/github-mathjax
ヘルプページのURL https://github.com/orsharir/github-mathjax/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MathJax Plugin for Github",
    "description": "Renders Github equations with MathJax",
    "version": "0.2.4",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "web_accessible_resources": [
        "mathjax_config.js",
        "MathJax\/*",
        "jquery-min-1.7.2.js",
        "dynamic_math.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "jquery-min-1.7.2.js",
                "jquery.include.pack-1.1.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}