User-Agent Switcher PRO

User-Agent Switcher PRO

Anonymize your browsing by easily switch/spoof/fake User-Agent with what you want. User-Agent selection mode: Manual, Auto, Random

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "User-Agent Switcher PRO",
  "version": "1.0.2",
  "description": "Anonymize your browsing by easily switch/spoof/fake User-Agent with what you want. User-Agent selection mode: Manual, Auto, Random",
  "author": "Matt Glow",
  "homepage_url": "https://github.com/h3xstone/switchUAPro",
  "icons": {
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "96": "icons/logo96.png",
    "128": "icons/logo128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "UA Switcher Pro",
    "default_popup": "popup/index.html",
    "default_icon": {
      "32": "icons/logo32.png",
      "48": "icons/logo48.png",
      "96": "icons/logo96.png",
      "128": "icons/logo128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{9c2272e3-d210-4347-85a1-7289a9f00333}"
    }
  }
}