Gmail Dynamic Images

Update Gmail cached images with the real ones

What is Gmail Dynamic Images?

Gmail Dynamic Images is a Chrome extension developed by Dev Labs, and its main feature is "Update Gmail cached images with the real ones".

Extension Screenshots

screenshot

Download Gmail Dynamic Images Extension CRX File

Download Gmail Dynamic Images extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
Official URL https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Description Update Gmail cached images with the real ones
File Size 490 KB
Installation Count 21
Current Version 0.0.4
Last Updated 2016-10-12
Publish Date 2016-10-12
Rating 5.00/5 Total 4 Ratings
Developer Dev Labs
Email [email protected]
Payment Type free
Extension Website https://github.com/dev-labs-bg/gmail-dynamic-images
Help Page URL https://github.com/dev-labs-bg/gmail-dynamic-images/issues
Privacy Policy Page URL https://privacy.devlabs.bg
Supported Languages 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
    }
}