Gmail Dynamic Images
Update Gmail cached images with the real ones
O que é Gmail Dynamic Images?
Gmail Dynamic Images é uma extensão do Chrome desenvolvida por Dev Labs, e sua principal característica é "Update Gmail cached images with the real ones".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gmail Dynamic Images
Baixe arquivos de extensão Gmail Dynamic Images 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
Gmail caches all external urls. That makes it impossible to read the most recent data of the dynamic images (i.e. votes and other server generated images). How the extension works: 1. The extension works in background mode and it's logic is executed only if the opened tab URL is https://mail.google.com/* 2. In the extension's Option page - you can list all domain names, those you want to enable dynamic images (stop caching).
Informações Básicas da Extensão
Nome | Gmail Dynamic Images |
ID | liagkeaohklpkejapcepbakplhlanade |
URL Oficial | https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade |
Descrição | Update Gmail cached images with the real ones |
Tamanho do Arquivo | 490 KB |
Contagem de Instalações | 21 |
Versão Atual | 0.0.4 |
Última Atualização | 2016-10-12 |
Data de Publicação | 2016-10-12 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Dev Labs |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/dev-labs-bg/gmail-dynamic-images |
URL da Página de Ajuda | https://github.com/dev-labs-bg/gmail-dynamic-images/issues |
URL da Página de Política de Privacidade | https://privacy.devlabs.bg |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Dynamic Images", "version": "0.0.4", "manifest_version": 2, "description": "Update Gmail cached images with the real ones", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "default_locale": "en", "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "js\/jquery\/jquery.min.js", "src\/inject\/inject.js" ] } ], "options_ui": { "page": "src\/options.html", "chrome_style": true } } |