GitHub Math Display
Displays LaTeX math equations in GitHub markdown previews.
Co to jest GitHub Math Display?
GitHub Math Display to rozszerzenie Chrome opracowane przez AaronCQL, a jego główną funkcją jest „Displays LaTeX math equations in GitHub markdown previews.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Math Display
Pobierz pliki rozszerzeń GitHub Math Display w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cgolaobglebjonjiblcjagnpmdmlgmda |
| Oficjalny URL | https://chromewebstore.google.com/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda |
| Opis | Displays LaTeX math equations in GitHub markdown previews. |
| Rozmiar pliku | 1.09 MB |
| Liczba instalacji | 849 |
| Aktualna Wersja | 0.3.7 |
| Ostatnia Aktualizacja | 2022-03-25 |
| Data Publikacji | 2020-07-30 |
| Ocena | 5.00/5 Łącznie 7 Oceny |
| Deweloper | AaronCQL |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/AaronCQL/katex-github-chrome-extension |
| Obsługiwane Języki | 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\/*"
]
} | |