Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Mathflowy: TeX equations for Workflowyคืออะไร?

Mathflowy: TeX equations for Workflowy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wonglkd และคุณลักษณะหลักของมันคือ "Render TeX / LaTeX math equations in Workflowy with MathJax."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mathflowy: TeX equations for Workflowy

ดาวน์โหลดไฟล์ส่วนขยาย Mathflowy: TeX equations for Workflowy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
คำอธิบาย Render TeX / LaTeX math equations in Workflowy with MathJax.
ขนาดไฟล์ 110 KB
จำนวนการติดตั้ง 446
เวอร์ชันปัจจุบัน 0.1.5
อัปเดตครั้งล่าสุด 2017-04-23
วันที่เผยแพร่ 2017-04-23
คะแนน 3.58/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา wonglkd
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/wonglkd/mathflowy
URL หน้าช่วยเหลือ https://github.com/wonglkd/mathflowy/issues
ภาษาที่รองรับ 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
    }
}