Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Что такое Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy - это расширение Chrome, разработанное wonglkd, и его основная функция - "Render TeX / LaTeX math equations in Workflowy with MathJax.".

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

screenshot

Скачать файл CRX расширения Mathflowy: TeX equations for Workflowy

Скачайте файлы расширений Mathflowy: TeX equations for Workflowy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Use this extension to render LaTeX in Workflowy (inline and display). 

Include inline math by surrounding it with \( and \) (e.g., \(2 + 2 = 5\)). (Single $ works as well.)

Include display math by surrounding it with \[ and \] (e.g., \[2 + 2 = 5\]). ($$ can be used as delimiters as well.)

Forked from thricedotted's original extension (https://github.com/thricedotted/mathflowy). Functionality is the same, just that it's been updated to work with the current version of Workflowy.

GitHub: https://github.com/wonglkd/mathflowy                    

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

Название Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
Официальный URL https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Описание Render TeX / LaTeX math equations in Workflowy with MathJax.
Размер файла 110 KB
Количество установок 446
Текущая Версия 0.1.5
Последнее Обновление 2017-04-23
Дата публикации 2017-04-23
Рейтинг 3.58/5 Всего 12 оценок
Разработчик wonglkd
Тип оплаты free
Официальный сайт расширения https://github.com/wonglkd/mathflowy
URL страницы помощи https://github.com/wonglkd/mathflowy/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mathflowy: TeX equations for Workflowy",
    "short_name": "Mathflowy",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Render TeX \/ LaTeX math equations in Workflowy with MathJax.",
    "icons": {
        "128": "mathflowy-128.png",
        "48": "mathflowy-48.png",
        "16": "mathflowy-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workflowy.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "render.js"
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}