GitHub Math Display
Displays LaTeX math equations in GitHub markdown previews.
Cos'è GitHub Math Display?
GitHub Math Display è un'estensione di Chrome sviluppata da AaronCQL, e la sua funzione principale è "Displays LaTeX math equations in GitHub markdown previews.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Math Display
Scarica i file di estensione GitHub Math Display in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | cgolaobglebjonjiblcjagnpmdmlgmda |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda |
| Descrizione | Displays LaTeX math equations in GitHub markdown previews. |
| Dimensione del File | 1.09 MB |
| Conteggio Installazioni | 849 |
| Versione Corrente | 0.3.7 |
| Ultimo Aggiornamento | 2022-03-25 |
| Data di Pubblicazione | 2020-07-30 |
| Valutazione | 5.00/5 Totale 7 Valutazioni |
| Sviluppatore | AaronCQL |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/AaronCQL/katex-github-chrome-extension |
| Lingue Supportate | 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\/*"
]
} | |