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”。
擴展截圖
下載MathJax 3 Plugin for Github擴展crx文件
下載MathJax 3 Plugin for Github擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | peoghobgdhejhcmgoppjpjcidngdfkod |
官方網址 | 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" } } |