Gmail Dynamic Images

Update Gmail cached images with the real ones

Qu'est-ce que Gmail Dynamic Images ?

Gmail Dynamic Images est une extension Chrome développée par Dev Labs, et sa fonction principale est "Update Gmail cached images with the real ones".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gmail Dynamic Images

Téléchargez les fichiers d'extension Gmail Dynamic Images au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
URL Officiel https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Description Update Gmail cached images with the real ones
Taille du Fichier 490 KB
Nombre d'Installations 21
Version Actuelle 0.0.4
Dernière Mise à Jour 2016-10-12
Date de Publication 2016-10-12
Évaluation 5.00/5 Total 4 Évaluations
Développeur Dev Labs
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dev-labs-bg/gmail-dynamic-images
URL de la Page d'Aide https://github.com/dev-labs-bg/gmail-dynamic-images/issues
URL de la Page de Politique de Confidentialité https://privacy.devlabs.bg
Langues Prises en Charge 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
    }
}