Outlook 365 to Zoom Meetings, URL Cleaner

For Windows & Outlook 365 users who get a ';' at the end of the meeting URL.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Outlook 365 to Zoom Meetings, URL Cleaner",
  "version": "1.0",
  "description": "For Windows & Outlook 365 users who get a ';' at the end of the meeting URL.",
  "manifest_version": 2,
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://*.zoom.us/j/*",
    "https://*.zoom.us/w/*",
    "https://*.zoom.us/s/*",
    "https://*.zoom.us/my/*",
    "https://zoom.us/j/*",
    "https://zoom.us/w/*",
    "https://zoom.us/s/*",
    "https://zoom.us/my/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}