Mathflowy: TeX equations for Workflowy
Render TeX / LaTeX math equations in Workflowy with MathJax.
Qu'est-ce que Mathflowy: TeX equations for Workflowy ?
Mathflowy: TeX equations for Workflowy est une extension Chrome développée par wonglkd, et sa fonction principale est "Render TeX / LaTeX math equations in Workflowy with MathJax.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mathflowy: TeX equations for Workflowy
Téléchargez les fichiers d'extension Mathflowy: TeX equations for Workflowy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Mathflowy: TeX equations for Workflowy |
ID | enkondafgdaafikjlehpnjebnknfgfle |
URL Officiel | https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle |
Description | Render TeX / LaTeX math equations in Workflowy with MathJax. |
Taille du Fichier | 110 KB |
Nombre d'Installations | 446 |
Version Actuelle | 0.1.5 |
Dernière Mise à Jour | 2017-04-23 |
Date de Publication | 2017-04-23 |
Évaluation | 3.58/5 Total 12 Évaluations |
Développeur | wonglkd |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wonglkd/mathflowy |
URL de la Page d'Aide | https://github.com/wonglkd/mathflowy/issues |
Langues Prises en Charge | 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 } } |