Referer Manager

Referer Manager

Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png",
      "300": "icons/icon-300.png"
    },
    "default_title": "Block Referer for this site"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "300": "icons/icon-300.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/blockJavascriptReferer.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "html/background.html",
    "persistent": true
  },
  "options_page": "html/options.html",
  "default_locale": "en",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "version": "1.5.3"
}