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.
Cos'è Varnish Indicator (forked, improved)?
Varnish Indicator (forked, improved) è un'estensione di Chrome sviluppata da barciajo, e la sua funzione principale è "A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Varnish Indicator (forked, improved)
Scarica i file di estensione Varnish Indicator (forked, improved) 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
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | cecjclajledipahfcbkcajegnbmpnbco |
| URL Ufficiale | https://chromewebstore.google.com/detail/varnish-indicator-forked/cecjclajledipahfcbkcajegnbmpnbco |
| Descrizione | A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not. |
| Dimensione del File | 28.68 KB |
| Conteggio Installazioni | 333 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2013-08-06 |
| Data di Pubblicazione | 2013-08-06 |
| Valutazione | 3.80/5 Totale 5 Valutazioni |
| Sviluppatore | barciajo |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/jbarciauskas/varnish-inspector |
| Lingue Supportate | 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"
} | |