Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Mathflowy: TeX equations for Workflowyとは何ですか?

Mathflowy: TeX equations for Workflowyはwonglkdによって開発されたChromeの拡張機能で、その主な機能は「Render TeX / LaTeX math equations in Workflowy with MathJax.」です。

拡張機能のスクリーンショット

screenshot

Mathflowy: TeX equations for Workflowy拡張機能のCRXファイルをダウンロード

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
    }
}