Varnish Indicator (forked, improved)

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.

Merlin
Additional files are visible only to premium users

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"
}