GitHub Math Display
Displays LaTeX math equations in GitHub markdown previews.
Was ist GitHub Math Display?
GitHub Math Display ist eine Chrome-Erweiterung, die von AaronCQL entwickelt wurde, und ihr Hauptmerkmal ist "Displays LaTeX math equations in GitHub markdown previews.".
Erweiterungsscreenshots
GitHub Math Display-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Math Display-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cgolaobglebjonjiblcjagnpmdmlgmda |
| Offizielle URL | https://chromewebstore.google.com/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda |
| Beschreibung | Displays LaTeX math equations in GitHub markdown previews. |
| Dateigröße | 1.09 MB |
| Installationsanzahl | 849 |
| Aktuelle Version | 0.3.7 |
| Letztes Update | 2022-03-25 |
| Veröffentlichungsdatum | 2020-07-30 |
| Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
| Entwickler | AaronCQL |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/AaronCQL/katex-github-chrome-extension |
| Unterstützte Sprachen | 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\/*"
]
} | |