Varnish Indicator

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

Cos'è Varnish Indicator?

Varnish Indicator è un'estensione di Chrome sviluppata da Scott Mebberson, e la sua funzione principale è "A web extension that shows if the current page was served by the Varnish cache.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Varnish Indicator

Scarica i file di estensione Varnish Indicator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Varnish Indicator Varnish Indicator
ID joengfmghhlcnbmikccgjiomgempdcpj
URL Ufficiale https://chrome.google.com/webstore/detail/varnish-indicator/joengfmghhlcnbmikccgjiomgempdcpj
Descrizione A web extension that shows if the current page was served by the Varnish cache.
Dimensione del File 17 KB
Conteggio Installazioni 100
Versione Corrente 1.1
Ultimo Aggiornamento 2020-11-04
Data di Pubblicazione 2020-07-04
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Scott Mebberson
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/smebberson/varnish-indicator-extension
Lingue Supportate 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"
}