Examine source code of User Agents for Microsoft Edge

Inspect and view changes in User Agents for Microsoft Edge source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "User Agents for Microsoft Edge",
  "version": "1.1.2.0",
  "manifest_version": 2,
  "author": "Hereafter",
  "browser_action": {
    "default_icon": {
      "20": "images/icons/icon_20.png",
      "40": "images/icons/icon_40.png"
    },
    "default_title": "__MSG_titleMicrosoftEdge__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/platform.js",
      "js/browser.js",
      "js/settings.js",
      "js/useragent.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "permissions": [
    "*://*/*",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "icons": {
    "16": "images/icons/icon_16.png",
    "32": "images/icons/icon_32.png",
    "48": "images/icons/icon_48.png",
    "128": "images/icons/icon_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}