您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
让移动设备更好点击
- // ==UserScript==
- // @name Enlarge the control bar while watching Zoom Recordings
- // @name:zh-TW 放大Zoom錄像工具欄
- // @name:zh-CN 放大Zoom录像工具栏
- // @namespace http://tampermonkey.net/
- // @version 0.3
- // @description Bigger is better, isn't it?
- // @description:zh-cn 让移动设备更好点击
- // @description:zh-TW 讓觸屏設備更好點擊
- // @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"] = "2.5";
- }
- window.addEventListener('load', enlarge, false);
- })();