Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Co to jest Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy to rozszerzenie Chrome opracowane przez wonglkd, a jego główną funkcją jest „Render TeX / LaTeX math equations in Workflowy with MathJax.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Mathflowy: TeX equations for Workflowy

Pobierz pliki rozszerzeń Mathflowy: TeX equations for Workflowy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
Oficjalny URL https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Opis Render TeX / LaTeX math equations in Workflowy with MathJax.
Rozmiar pliku 110 KB
Liczba instalacji 446
Aktualna Wersja 0.1.5
Ostatnia Aktualizacja 2017-04-23
Data Publikacji 2017-04-23
Ocena 3.58/5 Łącznie 12 Oceny
Deweloper wonglkd
Typ Płatności free
Strona Rozszerzenia https://github.com/wonglkd/mathflowy
Adres URL Strony Pomocy https://github.com/wonglkd/mathflowy/issues
Obsługiwane Języki 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
    }
}