TeX for Gmail
Use LaTeX (a method for rendering mathematical formulas) with Gmail.
Wat is TeX for Gmail?
TeX for Gmail is een Chrome-extensie ontwikkeld door https://alexeev.org, en de belangrijkste functie is "Use LaTeX (a method for rendering mathematical formulas) with Gmail.".
Extensie Screenshots
Download het CRX-bestand van de extensie TeX for Gmail
Download TeX for Gmail-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | TeX for Gmail |
ID | gjnmclkoadjdljnfmbnnhaahilafoeji |
Officiële URL | https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji |
Beschrijving | Use LaTeX (a method for rendering mathematical formulas) with Gmail. |
Bestandsgrootte | 154 KB |
Aantal Installaties | 60,000 |
Huidige Versie | 6.7.3 |
Laatst Bijgewerkt | 2020-11-23 |
Publicatiedatum | 2020-04-02 |
Beoordeling | 4.62/5 Totaal 353 Beoordelingen |
Ontwikkelaar | https://alexeev.org |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://alexeev.org/gmailtex.html |
Help Pagina-URL | http://alexeev.org/help.html |
URL van de Privacybeleid Pagina | http://alexeev.org/privacy.html |
Ondersteunde Talen | 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 } } |