Mathflowy: TeX equations for Workflowy
Render TeX / LaTeX math equations in Workflowy with MathJax.
¿Qué es Mathflowy: TeX equations for Workflowy?
Mathflowy: TeX equations for Workflowy es una extensión de Chrome desarrollada por wonglkd, y su función principal es "Render TeX / LaTeX math equations in Workflowy with MathJax.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Mathflowy: TeX equations for Workflowy
Descarga archivos de extensión Mathflowy: TeX equations for Workflowy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Mathflowy: TeX equations for Workflowy |
ID | enkondafgdaafikjlehpnjebnknfgfle |
URL Oficial | https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle |
Descripción | Render TeX / LaTeX math equations in Workflowy with MathJax. |
Tamaño del Archivo | 110 KB |
Cantidad de Instalaciones | 446 |
Versión Actual | 0.1.5 |
Última Actualización | 2017-04-23 |
Fecha de Publicación | 2017-04-23 |
Calificación | 3.58/5 Total de 12 Calificaciones |
Desarrollador | wonglkd |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/wonglkd/mathflowy |
URL de la Página de Ayuda | https://github.com/wonglkd/mathflowy/issues |
Idiomas Soportados | 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 } } |