Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Vad är Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy är en Chrome-tillägg utvecklad av wonglkd, och dess huvudfunktion är "Render TeX / LaTeX math equations in Workflowy with MathJax.".

Tilläggsskärmbilder

screenshot

Ladda ner Mathflowy: TeX equations for Workflowy-förlängningens CRX-fil

Ladda ner Mathflowy: TeX equations for Workflowy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
Officiell webbadress https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Beskrivning Render TeX / LaTeX math equations in Workflowy with MathJax.
Filstorlek 110 KB
Antal Installationer 446
Aktuell Version 0.1.5
Senast Uppdaterad 2017-04-23
Publiceringsdatum 2017-04-23
Betyg 3.58/5 Totalt 12 Betyg
Utvecklare wonglkd
Betalningssätt free
Tilläggswebbplats https://github.com/wonglkd/mathflowy
Hjälpsida URL https://github.com/wonglkd/mathflowy/issues
Stödda Språk 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
    }
}