Varnish Indicator

Varnish Indicator

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}