Fix Image WebCache

Fixes Gmail image webcache for specified domains.

Что такое Fix Image WebCache?

Fix Image WebCache - это расширение Chrome, разработанное Jiri Tyr, и его основная функция - "Fixes Gmail image webcache for specified domains.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Fix Image WebCache

Скачайте файлы расширений 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
Официальный 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"
    ]
}