Wikipedia with MathJax
Renders Wikipedia equations with MathJax
什麼是Wikipedia with MathJax?
Wikipedia with MathJax是由Boris Gromov開發的Chrome擴展程式,該擴展的主要功能是“Renders Wikipedia equations with MathJax”。
擴展截圖
下載Wikipedia with MathJax擴展crx文件
下載Wikipedia with MathJax擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | fhomhkjcommffnlajeemenejemmegcmi |
官方網址 | 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" } ] } |