Tiktok Video Controls

Web player controls and volume reduction to 25%

当前为 2020-04-14 提交的版本,查看 最新版本

// ==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}');