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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | http://alexeev.org/help.html |
عنوان صفحة سياسة الخصوصية | 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 } } |