User-Agent Switcher

User-Agent Switcher

Simplest way to switch between user-agents in your browser!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.7",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/helper.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "User Agent switcher",
    "default_icon": "images/logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/helper_cs.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "js/jquery.js",
    "js/helper_cs.js"
  ],
  "storage": {
    "managed_schema": "js/schema.json"
  }
}