Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Cos'è Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy è un'estensione di Chrome sviluppata da wonglkd, e la sua funzione principale è "Render TeX / LaTeX math equations in Workflowy with MathJax.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mathflowy: TeX equations for Workflowy

Scarica i file di estensione Mathflowy: TeX equations for Workflowy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
URL Ufficiale https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Descrizione Render TeX / LaTeX math equations in Workflowy with MathJax.
Dimensione del File 110 KB
Conteggio Installazioni 446
Versione Corrente 0.1.5
Ultimo Aggiornamento 2017-04-23
Data di Pubblicazione 2017-04-23
Valutazione 3.58/5 Totale 12 Valutazioni
Sviluppatore wonglkd
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wonglkd/mathflowy
URL della Pagina di Aiuto https://github.com/wonglkd/mathflowy/issues
Lingue Supportate 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
    }
}