Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Was ist Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy ist eine Chrome-Erweiterung, die von wonglkd entwickelt wurde, und ihr Hauptmerkmal ist "Render TeX / LaTeX math equations in Workflowy with MathJax.".

Erweiterungsscreenshots

screenshot

Mathflowy: TeX equations for Workflowy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mathflowy: TeX equations for Workflowy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
Offizielle URL https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Beschreibung Render TeX / LaTeX math equations in Workflowy with MathJax.
Dateigröße 110 KB
Installationsanzahl 446
Aktuelle Version 0.1.5
Letztes Update 2017-04-23
Veröffentlichungsdatum 2017-04-23
Bewertung 3.58/5 Insgesamt 12 Bewertungen
Entwickler wonglkd
Zahlungsart free
Erweiterungswebsite https://github.com/wonglkd/mathflowy
Hilfeseite URL https://github.com/wonglkd/mathflowy/issues
Unterstützte Sprachen 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
    }
}