Gmail Dynamic Images

Update Gmail cached images with the real ones

Was ist Gmail Dynamic Images?

Gmail Dynamic Images ist eine Chrome-Erweiterung, die von Dev Labs entwickelt wurde, und ihr Hauptmerkmal ist "Update Gmail cached images with the real ones".

Erweiterungsscreenshots

screenshot

Gmail Dynamic Images-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail Dynamic Images-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
Offizielle URL https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Beschreibung Update Gmail cached images with the real ones
Dateigröße 490 KB
Installationsanzahl 21
Aktuelle Version 0.0.4
Letztes Update 2016-10-12
Veröffentlichungsdatum 2016-10-12
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Dev Labs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dev-labs-bg/gmail-dynamic-images
Hilfeseite URL https://github.com/dev-labs-bg/gmail-dynamic-images/issues
URL der Datenschutzrichtlinien-Seite https://privacy.devlabs.bg
Unterstützte Sprachen 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
    }
}