Safe Links Cleaner

Safe Links Cleaner

Correct the display and quoting of links mangled by Microsoft Defender for Office 365 Safe Links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Safe Links Cleaner",
  "description": "__MSG_extensionDescription__",
  "version": "1.5.6",
  "author": "David Byers",
  "homepage_url": "https://gitlab.liu.se/safelinks/safelinks-cleaner",
  "default_locale": "en",
  "icons": {
    "16": "icon16x16.png",
    "32": "icon32x32.png",
    "128": "icon128x128.png"
  },
  "permissions": [
    "clipboardWrite",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "links.js",
      "menu.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://outlook.office.com/*",
        "*://outlook.office365.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "mutation.js",
        "links.js",
        "popup.js",
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}