Trimless for Google Mail™
Automatically shows trimmed content in Google Mail™.
O que é Trimless for Google Mail™?
Trimless for Google Mail™ é uma extensão do Chrome desenvolvida por Alec Mev, e sua principal característica é "Automatically shows trimmed content in Google Mail™.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trimless for Google Mail™
Baixe arquivos de extensão Trimless for Google Mail™ 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
Expands trimmed parts, removes "Show trimmed content" buttons, sets trimmed text's color to light gray and indents it to the right. Restores clipped messages as well. You can switch it on and off by simply clicking the scissors icon in the address bar. The color and the size of indentation are fully customizable. Tinker with the source code on GitHub: http://bit.ly/YDmt1z Buy me some ice cream via PayPal: http://bit.ly/15maUAa
Informações Básicas da Extensão
Nome | Trimless for Google Mail™ |
ID | niepjjjfafhadmfdminbckmciijcaagc |
URL Oficial | https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc |
Descrição | Automatically shows trimmed content in Google Mail™. |
Tamanho do Arquivo | 88.72 KB |
Contagem de Instalações | 30,000 |
Versão Atual | 1.11.1 |
Última Atualização | 2019-05-29 |
Data de Publicação | 2019-05-29 |
Classificação | 3.99/5 Total de 93 Avaliações |
Desenvolvedor | Alec Mev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jeremejevs/trimless-gmail |
URL da Página de Ajuda | https://github.com/jeremejevs/trimless-gmail/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trimless for Google Mail\u2122", "version": "1.11.1", "description": "Automatically shows trimmed content in Google Mail\u2122.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "page_action": { "default_title": "Trimless", "default_icon": { "19": "images\/icon-action-19.png", "38": "images\/icon-action-38.png" } }, "background": { "scripts": [ "vendor\/tinycolor-1.4.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "vendor\/jquery-3.3.1.min.js", "contentScript.js" ], "run_at": "document_start" } ], "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ], "short_name": "Trimless Gmail", "applications": { "gecko": { "id": "[email protected]" } } } |