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.”。
扩展截图
下载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 |
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 } } |