TeX for Gmail
Use LaTeX (a method for rendering mathematical formulas) with Gmail.
Co to jest TeX for Gmail?
TeX for Gmail to rozszerzenie Chrome opracowane przez https://alexeev.org, a jego główną funkcją jest „Use LaTeX (a method for rendering mathematical formulas) with Gmail.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TeX for Gmail
Pobierz pliki rozszerzeń TeX for Gmail w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | TeX for Gmail |
ID | gjnmclkoadjdljnfmbnnhaahilafoeji |
Oficjalny URL | https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji |
Opis | Use LaTeX (a method for rendering mathematical formulas) with Gmail. |
Rozmiar pliku | 154 KB |
Liczba instalacji | 60,000 |
Aktualna Wersja | 6.7.3 |
Ostatnia Aktualizacja | 2020-11-23 |
Data Publikacji | 2020-04-02 |
Ocena | 4.62/5 Łącznie 353 Oceny |
Deweloper | https://alexeev.org |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://alexeev.org/gmailtex.html |
Adres URL Strony Pomocy | http://alexeev.org/help.html |
Adres URL Strony Polityki Prywatności | http://alexeev.org/privacy.html |
Obsługiwane Języki | 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 } } |