Native MathML

Force MathJax/KaTeX/MediaWiki to use native MathML rendering.

Native MathML란 무엇입니까?

Native MathML은(는) Frédéric Wang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Force MathJax/KaTeX/MediaWiki to use native MathML rendering."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Native MathML 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This add-on performs the following actions on each page to try and switch to native MathML rendering when possible:

- Insert CSS stylesheets to display the hidden MathML output generated by MediaWiki, MathJax ≥ 3 and KaTeX ≥ 0.2.

- Set the preference cookie of MathJax 2 so that it uses its NativeMML output processor.

It is recommended to install math fonts for best MathML rendering.

Examples of Web pages:
- Wikipedia Fourier transform (MediaWiki) 
- KaTeX homepage (KaTeX)
- MathJax samples (MathJax 3)
- math.stackexchange (MathJax 2)                    

확장 프로그램 기본 정보

이름 Native MathML Native MathML
ID lcadkfljmcmcflpdbfmgcpjlejmpcplg
공식 URL https://chromewebstore.google.com/detail/native-mathml/lcadkfljmcmcflpdbfmgcpjlejmpcplg
설명 Force MathJax/KaTeX/MediaWiki to use native MathML rendering.
파일 크기 16.74 KB
설치 횟수 554
현재 버전 2.0.0
최근 업데이트 2022-12-27
출시 날짜 2022-12-27
개발자 Frédéric Wang
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Native MathML",
    "version": "2.0.0",
    "description": "Force MathJax\/KaTeX\/MediaWiki to use native MathML rendering.",
    "author": "Fr\u00e9d\u00e9ric Wang",
    "homepage_url": "https:\/\/github.com\/fred-wang\/webextension-native-mathml",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "content-scripts\/katex.css",
                "content-scripts\/mathjax-v3.css",
                "content-scripts\/mediawiki.css"
            ],
            "js": [
                "content-scripts\/mathjax-v2-menu-cookie.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "jid1-fGtBdrROY6E1gA@jetpack"
        }
    }
}