Varnish Indicator

A web extension that shows if the current page was served by the Varnish cache.

Varnish Indicatorとは何ですか?

Varnish IndicatorはScott Mebbersonによって開発されたChromeの拡張機能で、その主な機能は「A web extension that shows if the current page was served by the Varnish cache.」です。

拡張機能のスクリーンショット

screenshot

Varnish Indicator拡張機能のCRXファイルをダウンロード

Varnish Indicator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        An icon will advise if Varnish is being used, and if so, if the page was served from cache or not.

You should install this if you're a developer and want to quickly determine if a page was served from Varnish cache.

The icon has four status colors:

- Gray: the default, displayed when Varnish isn't detected.
- Blue: displays when Varnish is detected.
- Green: displays when the page was served from cache.
- Red: displays the when the page wasn't served from cache.

It looks for x-varnish and x-varnish-cache headers to detect Varnish. It can inspect both the x-varnish-cache (looking for hit and miss) and x-varnish (looking for two ids) headers to determine if a hit or miss took place.

The extension is open source and you can find more details at https://github.com/smebberson/varnish-indicator-extension.

Improvements and suggestions are welcomed :)

Updates

v1.1

- Adds support for duplicate varnish headers.                    

拡張機能の基本情報

名前 Varnish Indicator Varnish Indicator
ID joengfmghhlcnbmikccgjiomgempdcpj
公式URL https://chrome.google.com/webstore/detail/varnish-indicator/joengfmghhlcnbmikccgjiomgempdcpj
説明 A web extension that shows if the current page was served by the Varnish cache.
ファイルサイズ 17 KB
インストール数 100
現在のバージョン 1.1
最終更新日 2020-11-04
公開日 2020-07-04
評価 3.67/5 合計 3 レビュー
開発者 Scott Mebberson
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/smebberson/varnish-indicator-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Scott Mebberson",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "description": "A web extension that shows if the current page was served by the Varnish cache.",
    "homepage_url": "https:\/\/github.com\/smebberson\/varnish-indicator-extension",
    "icons": {
        "16": "img\/icon_small.png",
        "48": "img\/icon_medium.png",
        "128": "img\/icon_large.png"
    },
    "manifest_version": 2,
    "name": "Varnish Indicator",
    "page_action": {
        "default_icon": "img\/grey.png"
    },
    "permissions": [
        "webRequest",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.1"
}