Download Zoom Recording

Allow right clicking a zoom video to download

// ==UserScript==
// @name         Download Zoom Recording
// @version      0.1
// @description  Allow right clicking a zoom video to download
// @author       Joshua Kaplan
// @match        https://*.zoom.us/rec/*
// @grant        none
// @license      MIT
// @run-at       document-start
// @namespace https://gf.qytechs.cn/users/1043295
// ==/UserScript==

(function() {
    'use strict';
    let old = EventTarget.prototype.addEventListener;
    EventTarget.prototype.addEventListener = function (type,listener){
        if(type=="contextmenu"){
            return;
        }
        old.apply(this, Array.prototype.slice.apply(arguments));
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址