您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Web player controls and volume reduction to 25%
当前为
// ==UserScript== // @name Tiktok Video Controls // @version 1 // @author VoidCrab // @description Web player controls and volume reduction to 25% // @include *tiktok.com/* // @grant GM_addStyle // @namespace https://greasyfork.org/users/469070 // ==/UserScript== var player = document.querySelector("video"); player.setAttribute("controls", ""); player.volume = 0.25; // Removes elements that are on top of the video and prevent using controls GM_addStyle('.play-button{display: none}'); GM_addStyle('.video-card-mask{display: none}'); GM_addStyle('.event-delegate-mask{display: none}');