VKTex

Send math formulas with TeX on VK social network

What is VKTex?

VKTex is a Chrome extension developed by gle8098, and its main feature is "Send math formulas with TeX on VK social network".

Extension Screenshots

screenshot

Download VKTex Extension CRX File

Download VKTex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Расширение отрисовывает формулы в сообщениях, постах, статьях и комментариях во Вконтакте.

Для того, чтобы формула отрисовалась в текущей строке, используйте двойной доллар
→ $$ \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).                    

Extension Basic Information

Name VKTex VKTex
ID liapglcfjokdhahanpnopomhpnmojfij
Official URL https://chromewebstore.google.com/detail/vktex/liapglcfjokdhahanpnopomhpnmojfij
Description Send math formulas with TeX on VK social network
File Size 1016 KB
Installation Count 57
Current Version 1.4.0
Last Updated 2022-05-07
Publish Date 2020-07-03
Developer gle8098
Email [email protected]
Payment Type free
Extension Website https://github.com/gle8098/VKTex
Help Page URL https://github.com/gle8098/VKTex
Supported Languages 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"
        }
    ]
}