Mathflowy: TeX equations for Workflowy
Render TeX / LaTeX math equations in Workflowy with MathJax.
Hvad er Mathflowy: TeX equations for Workflowy?
Mathflowy: TeX equations for Workflowy er en Chrome-udvidelse udviklet af wonglkd, og dens hovedfunktion er "Render TeX / LaTeX math equations in Workflowy with MathJax.".
Udvidelsesskærmbilleder
Download Mathflowy: TeX equations for Workflowy-udvidelses-CRX-fil
Download Mathflowy: TeX equations for Workflowy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Mathflowy: TeX equations for Workflowy |
ID | enkondafgdaafikjlehpnjebnknfgfle |
Officiel URL | https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle |
Beskrivelse | Render TeX / LaTeX math equations in Workflowy with MathJax. |
Filstørrelse | 110 KB |
Antal Installationer | 446 |
Nuværende Version | 0.1.5 |
Senest Opdateret | 2017-04-23 |
Udgivelsesdato | 2017-04-23 |
Bedømmelse | 3.58/5 Samlet 12 Bedømmelser |
Udvikler | wonglkd |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/wonglkd/mathflowy |
Hjælpeside-URL | https://github.com/wonglkd/mathflowy/issues |
Understøttede Sprog | 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 } } |