TeX for Gmail
Use LaTeX (a method for rendering mathematical formulas) with Gmail.
O que é TeX for Gmail?
TeX for Gmail é uma extensão do Chrome desenvolvida por https://alexeev.org, e sua principal característica é "Use LaTeX (a method for rendering mathematical formulas) with Gmail.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TeX for Gmail
Baixe arquivos de extensão TeX for Gmail no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | TeX for Gmail |
ID | gjnmclkoadjdljnfmbnnhaahilafoeji |
URL Oficial | https://chromewebstore.google.com/detail/tex-for-gmail/gjnmclkoadjdljnfmbnnhaahilafoeji |
Descrição | Use LaTeX (a method for rendering mathematical formulas) with Gmail. |
Tamanho do Arquivo | 154 KB |
Contagem de Instalações | 60,000 |
Versão Atual | 6.7.3 |
Última Atualização | 2020-11-23 |
Data de Publicação | 2020-04-02 |
Classificação | 4.62/5 Total de 353 Avaliações |
Desenvolvedor | https://alexeev.org |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://alexeev.org/gmailtex.html |
URL da Página de Ajuda | http://alexeev.org/help.html |
URL da Página de Política de Privacidade | http://alexeev.org/privacy.html |
Idiomas Suportados | 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 } } |