Skip to content

Instantly share code, notes, and snippets.

@miraries
miraries / userscript.js
Created March 23, 2020 02:24
Zoom redirector
// ==UserScript==
// @name Zoom web redirect
// @match *://*.zoom.us/j/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const match = /^\/j\/(\d+)\/?$/.exec(location.pathname);