Fix Image WebCache

Fixes Gmail image webcache for specified domains.

What is Fix Image WebCache?

Fix Image WebCache is a Chrome extension developed by Jiri Tyr, and its main feature is "Fixes Gmail image webcache for specified domains.".

Extension Screenshots

screenshot
screenshot

Download Fix Image WebCache Extension CRX File

Download Fix Image WebCache 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

                        If you see broken images in your Gmail inbox, it could be caused by images pointing to your internal web server (e.g. Jira system) which Google is trying to cache. This extension helps to remove the Google image web cache and point the images directly to the web server.

The extension will only work if you can open the images from your browser (i.e. you are connected to the internal network).                    

Extension Basic Information

Name Fix Image WebCache Fix Image WebCache
ID koimnfpoocfeklhjnkekpbdfniimfmpn
Official URL https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn
Description Fixes Gmail image webcache for specified domains.
File Size 100 KB
Installation Count 28
Current Version 1.2
Last Updated 2014-02-04
Publish Date 2014-02-04
Rating 3.00/5 Total 2 Ratings
Developer Jiri Tyr
Payment Type free
Extension Website https://github.com/jtyr/fix-image-webcache
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fix Image WebCache",
    "version": "1.2",
    "description": "Fixes Gmail image webcache for specified domains.",
    "icons": {
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon-48.png",
        "default_title": "Fix Image WebCache"
    },
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/mail\/*",
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "scripts\/jquery-2.0.2.min.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "scripts\/jquery-2.0.2.min.map"
    ],
    "permissions": [
        "storage"
    ]
}