Gmail Dynamic Images

Update Gmail cached images with the real ones

Hvad er Gmail Dynamic Images?

Gmail Dynamic Images er en Chrome-udvidelse udviklet af Dev Labs, og dens hovedfunktion er "Update Gmail cached images with the real ones".

Udvidelsesskærmbilleder

screenshot

Download Gmail Dynamic Images-udvidelses-CRX-fil

Download Gmail Dynamic Images-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
Officiel URL https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Beskrivelse Update Gmail cached images with the real ones
Filstørrelse 490 KB
Antal Installationer 21
Nuværende Version 0.0.4
Senest Opdateret 2016-10-12
Udgivelsesdato 2016-10-12
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler Dev Labs
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/dev-labs-bg/gmail-dynamic-images
Hjælpeside-URL https://github.com/dev-labs-bg/gmail-dynamic-images/issues
URL til Fortrolighedspolitik Side https://privacy.devlabs.bg
Understøttede Sprog 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
    }
}