LaTeX in Discord

Render LaTeX in Discord chat.

Что такое LaTeX in Discord?

LaTeX in Discord - это расширение Chrome, разработанное Sophie Huiberts, и его основная функция - "Render LaTeX in Discord chat.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения LaTeX in Discord

Скачайте файлы расширений LaTeX in Discord в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This addon will render LaTeX formulas in the Discord browser client.

To type a formula to render, use $e^x$ for inline or $$e^x$$ for display mode.

Note that Discord can be a bit funny with the characters *, _, and \. Adding backslashes \  before those to escape Discord's message formatting functions will fix your messages.                    

Основная информация о расширении

Название LaTeX in Discord LaTeX in Discord
ID bejfcabcmhackmcaaclgiocgfpmpnaml
Официальный URL https://chromewebstore.google.com/detail/latex-in-discord/bejfcabcmhackmcaaclgiocgfpmpnaml
Описание Render LaTeX in Discord chat.
Размер файла 1.31 MB
Количество установок 1,215
Текущая Версия 0.5.1
Последнее Обновление 2020-09-05
Дата публикации 2020-08-20
Рейтинг 4.33/5 Всего 3 оценок
Разработчик Sophie Huiberts
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sophiehuiberts/katex-with-slack
URL страницы помощи https://github.com/sophiehuiberts/katex-with-slack
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "css": [
                "katex.css"
            ],
            "matches": [
                "*:\/\/*.discord.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "fonts\/*"
    ],
    "description": "Render LaTeX in Discord chat.",
    "manifest_version": 2,
    "name": "LaTeX in Discord",
    "short_name": "latex-discord",
    "version": "0.5.1",
    "icons": {
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}