Random User-Agent (Switcher)

Random User-Agent (Switcher)

Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_manifest_name__",
  "version": "3.19.0",
  "author": "https://github.com/tarampampam",
  "homepage_url": "https://github.com/tarampampam/random-user-agent",
  "default_locale": "en",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "icons/logo/16.png",
    "48": "icons/logo/48.png",
    "128": "icons/logo/128.png"
  },
  "minimum_chrome_version": "49.0",
  "incognito": "spanning",
  "browser_action": {
    "default_icon": "icons/logo/48.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_manifest_action_default_title__"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "commands": {
    "renew-useragent": {
      "description": "__MSG_manifest_command_renew_useragent__",
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      }
    }
  }
}