Download Zoom Recording

Add a green button to download zoom recorded video.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Download Zoom Recording
// @namespace    http://www.bluespace.tech/
// @version      0.3
// @description  Add a green button to download zoom recorded video.
// @author       William Li, author of ID Guard Offline, a great password manager
// @match        https://us02web.zoom.us/rec/*
// @grant        none
// @license      MIT
// @homepageURL  http://www.bluespace.tech/
// @supportURL   https://gist.github.com/everwanna/fbc88a56bd2a71ccc3f7c9443737fdb6
// ==/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);

})();