User Agent Switcher

User Agent Switcher

Quickly and easily switch between popular user-agent strings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "short_name": "useragent switcher",
  "version": "1.0.4",
  "manifest_version": 2,
  "default_locale": "en",
  "offline_enabled": true,
  "homepage_url": "https://useragent.freeonlineapps.net/",
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_title": "__MSG_app_name__",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "data/content_script/inject.js"
      ]
    }
  ],
  "background": {
    "page": "lib/chrome/background.html"
  },
  "commands": {
    "toggle-default-mode": {
      "description": "Toggle Default UA Mode",
      "suggested_key": {
        "default": "Ctrl+Shift+D",
        "mac": "Command+Shift+D"
      }
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}