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

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}