// ==UserScript== // @name Download Zoom Recording // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author William Li // @match https://us02web.zoom.us/rec/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... window.setTimeout(function() { var v = document.getElementsByTagName('video')[0]; var source = v.currentSrc; var download = document.createElement('a'); download.href = source; download.style = "position: fixed; right: 16px; top: 16px; background-color: MediumSeaGreen; color: white; padding: 12px;"; download.innerText = "Right click, Save Link As..."; document.body.appendChild(download); }, 2000); })();