User agent override

User agent override

Gives the ability to set custom user agent string

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.0",
  "name": "User agent override",
  "description": "Gives the ability to set custom user agent string",
  "author": "Nikola Glavina",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "intercept.js"
    ]
  },
  "permissions": [
    "webRequest",
    "<all_urls>",
    "webRequestBlocking",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  }
}