Greasy Fork

Greasy Fork is available in English.

Watch Tiktok in fullscreen

Hide the comment section of all Tiktok videos, so the videos will be full screen.

目前为 2021-08-16 提交的版本,查看 最新版本

// ==UserScript==
// @name         Watch Tiktok in fullscreen
// @namespace    https://www.tiktok.com/
// @version      0.1
// @description  Hide the comment section of all Tiktok videos, so the videos will be full screen.
// @author       Me
// @match        https://www.tampermonkey.net/index.php?version=4.13&ext=dhdg&updated=true
// @icon         https://www.google.com/s2/favicons?domain=https://www.tiktok.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByClassName("jsx-3748520549 content-container")[0].style.display = "none";
})();