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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
    }
}