Web player controls and volume reduction to 15%
ohh found one more
.tiktok-rjuknw-DivVideoControlContainer {
bottom: -50px !important;
}
btw if you wanna know how it works then the function is basically just overwriting the CSS style, and specifically here just moving them -50 down, so if you find more then just add them in the function
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Can we get this code added, it will remove the normal buttons and time sliders (by moving them out of the screen)
(function() {
let css = `
.tiktok-ascbr8-DivVideoControlContainer {
bottom: -50px !important;
}
.tiktok-q09c19-DivVoiceControlContainer {
bottom: -50px !important;
}
.tiktok-mlcjt3-DivPlayIconContainer-StyledDivPlayIconContainer {
bottom: -50px !important;
}
.tiktok-2a1qk3-DivVoiceControlContainer {
bottom: -50px !important;
}
`;
if (typeof GM_addStyle !== "undefined") {
GM_addStyle(css);
} else {
let styleNode = document.createElement("style");
styleNode.appendChild(document.createTextNode(css));
(document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();