Auto Referer

Auto Referer

Control referer to protect privacy and not break web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Referer",
  "description": "Control referer to protect privacy and not break web",
  "manifest_version": 2,
  "version": "0.8.40",
  "homepage_url": "https://github.com/garywill/autoReferer",
  "author": {
    "name": "Garywill",
    "url": "https://garywill.github.io"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "ws://*/*",
    "wss://*/*",
    "<all_urls>",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon_gray.png",
    "default_title": "Auto Referer"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Click toolbar button"
    },
    "toggle_t": {
      "description": "Toggle for one tab"
    },
    "toggle_h": {
      "description": "Toggle for one tab and new tabs opened by it"
    },
    "toggle_global": {
      "description": "Toggle globally enable/disable"
    }
  },
  "options_ui": {
    "page": "options.html"
  }
}