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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}