English please

English please

The extension to redirect technical Microsoft pages to english version.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "English please",
  "version": "2.0.0.0",
  "manifest_version": 3,
  "description": "The extension to redirect technical Microsoft pages to english version.",
  "homepage_url": "https://robin.ms",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "incognito": "split",
  "content_scripts": [
    {
      "matches": [
        "*://*.microsoft.com/*",
        "*://support.office.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "redirect.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}