GitHub Math Display
Displays LaTeX math equations in GitHub markdown previews.
Что такое GitHub Math Display?
GitHub Math Display - это расширение Chrome, разработанное AaronCQL, и его основная функция - "Displays LaTeX math equations in GitHub markdown previews.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Math Display
Скачайте файлы расширений 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\/*" ] } |