Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Apa itu Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy adalah ekstensi Chrome yang dikembangkan oleh wonglkd, dan fitur utamanya adalah "Render TeX / LaTeX math equations in Workflowy with MathJax.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mathflowy: TeX equations for Workflowy

Unduh file ekstensi Mathflowy: TeX equations for Workflowy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
URL Resmi https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Deskripsi Render TeX / LaTeX math equations in Workflowy with MathJax.
Ukuran File 110 KB
Jumlah Instalasi 446
Versi Saat Ini 0.1.5
Terakhir Diperbarui 2017-04-23
Tanggal Publikasi 2017-04-23
Penilaian 3.58/5 Total 12 Penilaian
Pengembang wonglkd
Tipe Pembayaran free
Situs Ekstensi https://github.com/wonglkd/mathflowy
URL Halaman Bantuan https://github.com/wonglkd/mathflowy/issues
Bahasa yang Didukung 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
    }
}