Enlarge the control bar while watching Zoom Recordings

Bigger is better, isn't it?

目前为 2021-10-02 提交的版本。查看 最新版本

// ==UserScript==
// @name         Enlarge the control bar while watching Zoom Recordings
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Bigger is better, isn't it?
// @author       You
// @match        *.zoom.us/rec/play/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function enlarge(){
        const bar = document.getElementsByClassName("vjs-control-bar")[0];

        bar.style["zoom"] = "3.0";
    }

    window.addEventListener('load', enlarge, false);
})();

QingJ © 2025

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