Gmail Dynamic Images

Update Gmail cached images with the real ones

Cos'è Gmail Dynamic Images?

Gmail Dynamic Images è un'estensione di Chrome sviluppata da Dev Labs, e la sua funzione principale è "Update Gmail cached images with the real ones".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gmail Dynamic Images

Scarica i file di estensione Gmail Dynamic Images in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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).                    

Informazioni di Base sull'Estensione

Nome Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
URL Ufficiale https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Descrizione Update Gmail cached images with the real ones
Dimensione del File 490 KB
Conteggio Installazioni 21
Versione Corrente 0.0.4
Ultimo Aggiornamento 2016-10-12
Data di Pubblicazione 2016-10-12
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Dev Labs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dev-labs-bg/gmail-dynamic-images
URL della Pagina di Aiuto https://github.com/dev-labs-bg/gmail-dynamic-images/issues
URL della Pagina della Politica sulla Privacy https://privacy.devlabs.bg
Lingue Supportate 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
    }
}