Wikipedia with MathJax

Renders Wikipedia equations with MathJax

Wikipedia with MathJax란 무엇입니까?

Wikipedia with MathJax은(는) Boris Gromov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Renders Wikipedia equations with MathJax"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Wikipedia with MathJax 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extension replaces Wikipedia bitmap equations with HTML-CSS ones by re-rendering them with an open source MathJax (http://mathjax.org/) library. In effect, this allows to scale Wikipedia pages without loosing in equation quality.

Left-Click on equation to instantly zoom it to 200% (can be changed via MathJax menu).

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 now published under New BSD License (https://github.com/bgromov/wiki-mathjax/blob/master/LICENSE.md) with the source code available here (https://github.com/bgromov/wiki-mathjax).

For bug reports and feature requests, please use the Issue tracker (https://github.com/bgromov/wiki-mathjax/issues).

UPDATE:

v.0.0.13:

 - Change MathJax CDN to CDNJS (Thanks to Lorenzo Cameroni and Peter Krautzberger).

v.0.0.12:

 - Add support for chemical equations (Thanks to Jordan Wade).

v.0.0.11:

Improvements and bug fixes (Thanks to Lorenzo Cameroni):

 - Adapt to recent Wikimedia math engine changes.

 - Improve work-around for unbalanced braces bug on Wikiwand.

 - Add missed symbols to MathJax config.

v.0.0.10:

 - Finally fix the problem with descriptive annotations for equations (some equations have textual descriptions instead of TeX code, perhaps for accessibility reasons). Now the math is loaded from corresponding source pages (edit pages).

 - Update jQuery to v1.12.3. Extension seems to work a bit better with Wikiwand now.

v.0.0.9:

 - Add support for Wikiwand (wikiwand.com). Quick and hackish implementation, that tries to fix broken equations on Wikiwand pages.

v.0.0.8:

 - Add support for WikiBooks (wikibooks.org).

v.0.0.7:

 - Extension now uses official Wikimedia MathJax config. Still, there are some glitches, so the local copy is used for now.

v.0.0.6:
 - Fix MathJax CDN URL (Thanks to Thomas Kriechbaumer).

v.0.0.5:
 - Add MathJax Preview feature. For smoother user experience original images replaced only after MathJax typesetting is ready (Thanks to Peter Krautzberger).
 - Fix: by default MathJax using different from LaTeX \color macro. That makes certain equations unable to render (for example, see Extended Kalman Filter (http://en.wikipedia.org/wiki/Extended_Kalman_filter#Discrete-time_predict_and_update_equations) ). The problem is solved by MathJax' `color` extension.

v.0.0.4:
 - Fix: Fix: extension now works on secured (https) version of Wikipedia

v.0.0.3:
 - Fix: extension now works on secured (https) version of Wikipedia

v.0.0.2:
 - Now supports some non-standart LaTeX commands specific to Wikipedia markup language.
 - Inline equations are scaled down to 100% (previously were same as display equations, i.e. 125%)

KNOWN ISSUES:
 - Some symbols may not render properly (instead, formula source is shown in red) if you are logged in to Wikipedia and the math rendering option is not set to 'LaTeX'. See issue on GitHub for details https://github.com/bgromov/wiki-mathjax/issues/20 (Thanks to Florian Pfaff).
 - Symbols which are not a part of display equation, i.e. not typed in between ..., but right after it, will be displayed from the next line. This is along with LaTeX markup rules and won't be fixed.
 - (Fixed) Fraction bar is oversized on scaled pages in recent versions of Chrome (e.g. 21.0.1180.75), this is a bug in MathJax/Chrome and not related to extension. See https://groups.google.com/forum/?fromgroups#!topic/mathjax-users/TWNUoKIaF4I%5B1-25%5D                    

확장 프로그램 기본 정보

이름 Wikipedia with MathJax Wikipedia with MathJax
ID fhomhkjcommffnlajeemenejemmegcmi
공식 URL https://chromewebstore.google.com/detail/wikipedia-with-mathjax/fhomhkjcommffnlajeemenejemmegcmi
설명 Renders Wikipedia equations with MathJax
파일 크기 47.86 KB
설치 횟수 7,047
현재 버전 0.0.13
최근 업데이트 2018-03-13
출시 날짜 2018-03-13
평점 4.61/5 총 56 개의 평점
개발자 Boris Gromov
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bgromov/wiki-mathjax
도움말 페이지 URL https://github.com/bgromov/wiki-mathjax/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wikipedia with MathJax",
    "version": "0.0.13",
    "icons": {
        "16": "wiki-mjax-16.png",
        "48": "wiki-mjax-48.png",
        "128": "wiki-mjax-128.png"
    },
    "description": "Renders Wikipedia equations with MathJax",
    "web_accessible_resources": [
        "texvc.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*",
                "https:\/\/*.wikibooks.org\/*",
                "http:\/\/*.wikiwand.com\/*",
                "https:\/\/*.wikiwand.com\/*"
            ],
            "js": [
                "jquery-1.12.4.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}