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
官方網址 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
電子郵箱 [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"
}