Greasy Fork

Download Zoom Recording

try to take over the world!

当前为 2020-05-10 提交的版本,查看 最新版本

// ==UserScript==
// @name         Download Zoom Recording
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://us02web.zoom.us/rec/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    console.log('Download');
    window.setTimeout(function() {
        console.log('load');
        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);
        console.log(download);
    }, 2000);

})();