User-Agent Switcher

User-Agent Switcher

User-Agent Switcher is a quick and easy way to switch between user-agents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "name": "User-Agent Switcher",
  "short_name": "User-Agent Switcher",
  "description": "User-Agent Switcher is a quick and easy way to switch between user-agents.",
  "version": "2.5.0",
  "offline_enabled": true,
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "User-Agent Switcher"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/",
    "https://*/",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "js/content.min.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}