VKTex
Send math formulas with TeX on VK social network
Cos'è VKTex?
VKTex è un'estensione di Chrome sviluppata da gle8098, e la sua funzione principale è "Send math formulas with TeX on VK social network".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VKTex
Scarica i file di estensione VKTex 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
Расширение отрисовывает формулы в сообщениях, постах, статьях и комментариях во Вконтакте. Для того, чтобы формула отрисовалась в текущей строке, используйте двойной доллар → $$ \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).
Informazioni di Base sull'Estensione
Nome | |
ID | liapglcfjokdhahanpnopomhpnmojfij |
URL Ufficiale | https://chromewebstore.google.com/detail/vktex/liapglcfjokdhahanpnopomhpnmojfij |
Descrizione | Send math formulas with TeX on VK social network |
Dimensione del File | 1016 KB |
Conteggio Installazioni | 57 |
Versione Corrente | 1.4.0 |
Ultimo Aggiornamento | 2022-05-07 |
Data di Pubblicazione | 2020-07-03 |
Sviluppatore | gle8098 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/gle8098/VKTex |
URL della Pagina di Aiuto | https://github.com/gle8098/VKTex |
Lingue Supportate | 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" } ] } |