Varnish Indicator (forked, improved)

A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.

Что такое Varnish Indicator (forked, improved)?

Varnish Indicator (forked, improved) - это расширение Chrome, разработанное barciajo, и его основная функция - "A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.".

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

screenshot

Скачать файл CRX расширения Varnish Indicator (forked, improved)

Скачайте файлы расширений Varnish Indicator (forked, improved) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This is a fork from https://github.com/deizel/varnish-inspector, so he deserves much of the credit. I've improved this to work with different flavors of Varnish (the original had a dependency on the order of headers). In particular, I've been testing this with Fastly, a CDN that uses Varnish under the hood.                    

Основная информация о расширении

Название Varnish Indicator (forked, improved) Varnish Indicator (forked, improved)
ID cecjclajledipahfcbkcajegnbmpnbco
Официальный URL https://chromewebstore.google.com/detail/varnish-indicator-forked/cecjclajledipahfcbkcajegnbmpnbco
Описание A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.
Размер файла 28.68 KB
Количество установок 333
Текущая Версия 1.0.0
Последнее Обновление 2013-08-06
Дата публикации 2013-08-06
Рейтинг 3.80/5 Всего 5 оценок
Разработчик barciajo
Тип оплаты free
Официальный сайт расширения https://github.com/jbarciauskas/varnish-inspector
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/button_gray.png"
    },
    "icons": {
        "16": "img\/icon_small.png",
        "48": "img\/icon_medium.png",
        "128": "img\/icon_large.png"
    },
    "manifest_version": 2,
    "name": "Varnish Indicator (forked, improved)",
    "permissions": [
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "minimum_chrome_version": "17",
    "version": "1.0.0"
}