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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
} | |