// ==UserScript== // @name Watch Tiktok in fullscreen // @name:fr Regarder Tiktok en plein écran // @namespace https://tiktok.com/* // @version 0.3 // @description Hide the comment section of all Tiktok videos so the videos will be full screen. // @description:fr Masque la section des commentaires de toutes les vidéos Tiktok afin que les vidéos soient en plein écran. // @author Me // @match https://www.tiktok.com // @icon https://www.google.com/s2/favicons?domain=https://www.tiktok.com/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.getElementsByClassName("jsx-3748520549 content-container")[0].style.display = "none"; })();