TeX for Gmail
Use LaTeX (a method for rendering mathematical formulas) with Gmail.
TeX for Gmailคืออะไร?
TeX for Gmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://alexeev.org และคุณลักษณะหลักของมันคือ "Use LaTeX (a method for rendering mathematical formulas) with Gmail."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TeX for Gmail
ดาวน์โหลดไฟล์ส่วนขยาย TeX for Gmail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TeX for Gmail |
ID | gjnmclkoadjdljnfmbnnhaahilafoeji |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji |
คำอธิบาย | Use LaTeX (a method for rendering mathematical formulas) with Gmail. |
ขนาดไฟล์ | 154 KB |
จำนวนการติดตั้ง | 60,000 |
เวอร์ชันปัจจุบัน | 6.7.3 |
อัปเดตครั้งล่าสุด | 2020-11-23 |
วันที่เผยแพร่ | 2020-04-02 |
คะแนน | 4.62/5 รวมทั้งหมด 353 คะแนน |
ผู้พัฒนา | https://alexeev.org |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://alexeev.org/gmailtex.html |
URL หน้าช่วยเหลือ | http://alexeev.org/help.html |
URL หน้านโยบายความเป็นส่วนตัว | http://alexeev.org/privacy.html |
ภาษาที่รองรับ | 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 } } |