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.
What is Varnish Indicator (forked, improved)?
Varnish Indicator (forked, improved) is a Chrome extension developed by barciajo, and its main feature is "A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not.".
Extension Screenshots
Download Varnish Indicator (forked, improved) Extension CRX File
Download Varnish Indicator (forked, improved) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Varnish Indicator (forked, improved) |
ID | cecjclajledipahfcbkcajegnbmpnbco |
Official URL | https://chromewebstore.google.com/detail/varnish-indicator-forked/cecjclajledipahfcbkcajegnbmpnbco |
Description | A simple Google Chrome extension that shows if a page being served up via a Varnish web accelerator is fresh or not. |
File Size | 28.68 KB |
Installation Count | 333 |
Current Version | 1.0.0 |
Last Updated | 2013-08-06 |
Publish Date | 2013-08-06 |
Rating | 3.80/5 Total 5 Ratings |
Developer | barciajo |
Payment Type | free |
Extension Website | https://github.com/jbarciauskas/varnish-inspector |
Supported Languages | 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" } |