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
官方網址 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"
    }
}