Fix Image WebCache

Fixes Gmail image webcache for specified domains.

什麼是Fix Image WebCache?

Fix Image WebCache是由Jiri Tyr開發的Chrome擴展程式,該擴展的主要功能是“Fixes Gmail image webcache for specified domains.”。

擴展截圖

screenshot
screenshot

下載Fix Image WebCache擴展crx文件

下載Fix Image WebCache擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Fix Image WebCache Fix Image WebCache
ID koimnfpoocfeklhjnkekpbdfniimfmpn
官方網址 https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn
簡介 Fixes Gmail image webcache for specified domains.
檔案大小 100 KB
安裝次數 28
目前版本 1.2
更新時間 2014-02-04
上架時間 2014-02-04
評分 3.00/5 共 2 次評分
開發者 Jiri Tyr
付費類型 free
擴展官網 https://github.com/jtyr/fix-image-webcache
支援的語言 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"
    ]
}