Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Wat is Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy is een Chrome-extensie ontwikkeld door wonglkd, en de belangrijkste functie is "Render TeX / LaTeX math equations in Workflowy with MathJax.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mathflowy: TeX equations for Workflowy

Download Mathflowy: TeX equations for Workflowy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
Officiële URL https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Beschrijving Render TeX / LaTeX math equations in Workflowy with MathJax.
Bestandsgrootte 110 KB
Aantal Installaties 446
Huidige Versie 0.1.5
Laatst Bijgewerkt 2017-04-23
Publicatiedatum 2017-04-23
Beoordeling 3.58/5 Totaal 12 Beoordelingen
Ontwikkelaar wonglkd
Betalingswijze free
Extensiewebsite https://github.com/wonglkd/mathflowy
Help Pagina-URL https://github.com/wonglkd/mathflowy/issues
Ondersteunde Talen 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
    }
}