Tiktok Video Controls

Web player controls and volume reduction to 15%

< Feedback on Tiktok Video Controls

Review: Good - script works

§
Posted: 2022-01-16

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);
}
})();

§
Posted: 2022-01-16

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

Post reply

Sign in to post a reply.