Mathflowy: TeX equations for Workflowy
Render TeX / LaTeX math equations in Workflowy with MathJax.
What is Mathflowy: TeX equations for Workflowy?
Mathflowy: TeX equations for Workflowy is a Chrome extension developed by wonglkd, and its main feature is "Render TeX / LaTeX math equations in Workflowy with MathJax.".
Extension Screenshots
Download Mathflowy: TeX equations for Workflowy Extension CRX File
Download Mathflowy: TeX equations for Workflowy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Mathflowy: TeX equations for Workflowy |
ID | enkondafgdaafikjlehpnjebnknfgfle |
Official URL | https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle |
Description | Render TeX / LaTeX math equations in Workflowy with MathJax. |
File Size | 110 KB |
Installation Count | 446 |
Current Version | 0.1.5 |
Last Updated | 2017-04-23 |
Publish Date | 2017-04-23 |
Rating | 3.58/5 Total 12 Ratings |
Developer | wonglkd |
Payment Type | free |
Extension Website | https://github.com/wonglkd/mathflowy |
Help Page URL | https://github.com/wonglkd/mathflowy/issues |
Supported Languages | 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 } } |