FFS MSDN in English

FFS MSDN in English

This will change the localisation of MSDN, azure.microsoft, support.microsoft, and/or learn.microsoft pages to English (en-us).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FFS MSDN in English",
  "description": "This will change the localisation of MSDN, azure.microsoft, support.microsoft, and/or learn.microsoft pages to English (en-us).",
  "version": "2.3.0",
  "icons": {
    "16": "icon_16.png",
    "24": "icon_24.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "64": "icon_64.png",
    "128": "icon_128.png",
    "256": "icon_256.png",
    "512": "icon_512.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "*://msdn.microsoft.com/*",
    "*://*.msdn.microsoft.com/*",
    "*://support.microsoft.com/*",
    "*://*.support.microsoft.com/*",
    "*://azure.microsoft.com/*",
    "*://*.azure.microsoft.com/*",
    "*://learn.microsoft.com/*",
    "*://*.learn.microsoft.com/*"
  ],
  "background": {
    "scripts": [
      "redirectToEnUs.js"
    ]
  },
  "browser_action": {
    "default_title": "Set Active Pages",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}