TeX for Gmail
Use LaTeX (a method for rendering mathematical formulas) with Gmail.
TeX for Gmail là gì?
TeX for Gmail là một tiện ích mở rộng Chrome được phát triển bởi https://alexeev.org, và tính năng chính của nó là "Use LaTeX (a method for rendering mathematical formulas) with Gmail.".
Ả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 TeX for Gmail
Tải xuống các tệp mở rộng TeX for Gmail 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
Typeset math in the outgoing and incoming messages. The other person does not have to have TeX for Gmail installed or to use Gmail. Math is viewable in most mail readers and browsers, including mobile ones.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TeX for Gmail |
ID | gjnmclkoadjdljnfmbnnhaahilafoeji |
URL Chính Thức | https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji |
Mô tả | Use LaTeX (a method for rendering mathematical formulas) with Gmail. |
Kích Thước Tệp | 154 KB |
Số Lần Cài Đặt | 60,000 |
Phiên Bản Hiện Tại | 6.7.3 |
Cập Nhật Lần Cuối | 2020-11-23 |
Ngày Phát Hành | 2020-04-02 |
Đánh Giá | 4.62/5 Tổng số 353 Đánh Giá |
Nhà Phát Triển | https://alexeev.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://alexeev.org/gmailtex.html |
URL Trang Trợ Giúp | http://alexeev.org/help.html |
URL Trang Chính Sách Bảo Mật | http://alexeev.org/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TeX for Gmail", "description": "Use LaTeX (a method for rendering mathematical formulas) with Gmail.", "version": "6.7.3", "permissions": [ "storage", "https:\/\/mail.google.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "inboxsdk.js", "options.js", "texforgmail.js", "app.js" ], "css": [ "style.css", "popups.css" ] } ], "web_accessible_resources": [ "logo128.png", "compose.png", "view.png" ], "icons": { "128": "logo128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": "logo128.png", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true, "chrome_style": true } } |