GitHub Math Display
Displays LaTeX math equations in GitHub markdown previews.
什么是GitHub Math Display?
GitHub Math Display是由AaronCQL开发的Chrome扩展程序,该扩展的主要功能是“Displays LaTeX math equations in GitHub markdown previews.”。
扩展截图
下载GitHub Math Display扩展crx文件
下载GitHub Math Display扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features: - Only targets Markdown previews: code blocks and code previews will not be affected - Fast and efficient rendering using KaTeX - Supports current GitHub website: including internal navigations, and when previewing an edited Markdown file
扩展基本信息
名称 | GitHub Math Display |
ID | cgolaobglebjonjiblcjagnpmdmlgmda |
官方URL | https://chromewebstore.google.com/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda |
简介 | Displays LaTeX math equations in GitHub markdown previews. |
文件大小 | 1.09 MB |
安装次数 | 849 |
当前版本 | 0.3.7 |
更新时间 | 2022-03-25 |
上架时间 | 2020-07-30 |
评分 | 5.00/5 共7次评分 |
开发者 | AaronCQL |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/AaronCQL/katex-github-chrome-extension |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Math Display", "version": "0.3.7", "description": "Displays LaTeX math equations in GitHub markdown previews.", "icons": { "128": "assets\/icon128.png" }, "content_scripts": [ { "js": [ "assets\/index-b8a067f0.js" ], "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_end", "css": [ "assets\/katex.css" ] } ], "background": { "scripts": [ "assets\/background-c76225da.js" ], "persistent": true }, "web_accessible_resources": [ "index.js", "assets\/fonts\/*", "constants-d1d9f3fd.js" ], "permissions": [ "webNavigation", "*:\/\/*.github.com\/*" ] } |