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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}