Fix Image WebCache

Fixes Gmail image webcache for specified domains.

Was ist Fix Image WebCache?

Fix Image WebCache ist eine Chrome-Erweiterung, die von Jiri Tyr entwickelt wurde, und ihr Hauptmerkmal ist "Fixes Gmail image webcache for specified domains.".

Erweiterungsscreenshots

screenshot
screenshot

Fix Image WebCache-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fix Image WebCache-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

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

Grundlegende Informationen zur Erweiterung

Name Fix Image WebCache Fix Image WebCache
ID koimnfpoocfeklhjnkekpbdfniimfmpn
Offizielle URL https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn
Beschreibung Fixes Gmail image webcache for specified domains.
Dateigröße 100 KB
Installationsanzahl 28
Aktuelle Version 1.2
Letztes Update 2014-02-04
Veröffentlichungsdatum 2014-02-04
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Jiri Tyr
Zahlungsart free
Erweiterungswebsite https://github.com/jtyr/fix-image-webcache
Unterstützte Sprachen 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"
    ]
}