Mathflowy: TeX equations for Workflowy
Render TeX / LaTeX math equations in Workflowy with MathJax.
Mathflowy: TeX equations for Workflowy là gì?
Mathflowy: TeX equations for Workflowy là một tiện ích mở rộng Chrome được phát triển bởi wonglkd, và tính năng chính của nó là "Render TeX / LaTeX math equations in Workflowy with MathJax.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mathflowy: TeX equations for Workflowy
Tải xuống các tệp mở rộng Mathflowy: TeX equations for Workflowy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mathflowy: TeX equations for Workflowy |
ID | enkondafgdaafikjlehpnjebnknfgfle |
URL Chính Thức | https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle |
Mô tả | Render TeX / LaTeX math equations in Workflowy with MathJax. |
Kích Thước Tệp | 110 KB |
Số Lần Cài Đặt | 446 |
Phiên Bản Hiện Tại | 0.1.5 |
Cập Nhật Lần Cuối | 2017-04-23 |
Ngày Phát Hành | 2017-04-23 |
Đánh Giá | 3.58/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | wonglkd |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wonglkd/mathflowy |
URL Trang Trợ Giúp | https://github.com/wonglkd/mathflowy/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |