VKTex
Send math formulas with TeX on VK social network
Qu'est-ce que VKTex ?
VKTex est une extension Chrome développée par gle8098, et sa fonction principale est "Send math formulas with TeX on VK social network".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension VKTex
Téléchargez les fichiers d'extension VKTex au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Расширение отрисовывает формулы в сообщениях, постах, статьях и комментариях во Вконтакте. Для того, чтобы формула отрисовалась в текущей строке, используйте двойной доллар → $$ \lambda \text{ I'll call it } \lambda $$ Для того, чтобы формула отрисовалась в новом абзаце — оберните в слеш и квадратную скобку. → \[ \lambda \text{ I'll call it } \lambda \] Расширение использует KaTeX — многофункционульную библиотеку для отрисовки формул. Здесь рассказано о том, какие команды или пакеты можно использовать: https://katex.org/docs/supported.html. VKTex разрабатывается силами Глеба (https://github.com/gle8098) и основан Федором (https://github.com/TulaShlyosberg).
Informations de Base sur l'Extension
Nom | |
ID | liapglcfjokdhahanpnopomhpnmojfij |
URL Officiel | https://chromewebstore.google.com/detail/vktex/liapglcfjokdhahanpnopomhpnmojfij |
Description | Send math formulas with TeX on VK social network |
Taille du Fichier | 1016 KB |
Nombre d'Installations | 57 |
Version Actuelle | 1.4.0 |
Dernière Mise à Jour | 2022-05-07 |
Date de Publication | 2020-07-03 |
Développeur | gle8098 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/gle8098/VKTex |
URL de la Page d'Aide | https://github.com/gle8098/VKTex |
Langues Prises en Charge | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VKTex", "version": "1.4.0", "manifest_version": 2, "description": "Send math formulas with TeX on VK social network", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "https:\/\/vk.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/vk.com\/*" ], "js": [ "katex\/katex.min.js", "katex\/contrib\/copy-tex.js", "main.js" ], "css": [ "katex\/katex.min.css", "katex\/contrib\/copy-tex.css", "autoscroll-fix.css" ], "run_at": "document_idle" } ] } |