Fix Image WebCache

Fixes Gmail image webcache for specified domains.

¿Qué es Fix Image WebCache?

Fix Image WebCache es una extensión de Chrome desarrollada por Jiri Tyr, y su función principal es "Fixes Gmail image webcache for specified domains.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Fix Image WebCache

Descarga archivos de extensión Fix Image WebCache en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Fix Image WebCache Fix Image WebCache
ID koimnfpoocfeklhjnkekpbdfniimfmpn
URL Oficial https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn
Descripción Fixes Gmail image webcache for specified domains.
Tamaño del Archivo 100 KB
Cantidad de Instalaciones 28
Versión Actual 1.2
Última Actualización 2014-02-04
Fecha de Publicación 2014-02-04
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Jiri Tyr
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jtyr/fix-image-webcache
Idiomas Soportados 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"
    ]
}