Gmail Dynamic Images
Update Gmail cached images with the real ones
Wat is Gmail Dynamic Images?
Gmail Dynamic Images is een Chrome-extensie ontwikkeld door Dev Labs, en de belangrijkste functie is "Update Gmail cached images with the real ones".
Extensie Screenshots
Download het CRX-bestand van de extensie Gmail Dynamic Images
Download Gmail Dynamic Images-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
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).
Basisinformatie over de Extensie
Naam | Gmail Dynamic Images |
ID | liagkeaohklpkejapcepbakplhlanade |
Officiële URL | https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade |
Beschrijving | Update Gmail cached images with the real ones |
Bestandsgrootte | 490 KB |
Aantal Installaties | 21 |
Huidige Versie | 0.0.4 |
Laatst Bijgewerkt | 2016-10-12 |
Publicatiedatum | 2016-10-12 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Dev Labs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/dev-labs-bg/gmail-dynamic-images |
Help Pagina-URL | https://github.com/dev-labs-bg/gmail-dynamic-images/issues |
URL van de Privacybeleid Pagina | https://privacy.devlabs.bg |
Ondersteunde Talen | 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 } } |