Remove annoying Tiktok Overlay

Removes 3 overlays which forces the user to register to Tiktok

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Remove annoying Tiktok Overlay
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removes 3 overlays which forces the user to register to Tiktok
// @author       tairasu
// @match        *://www.tiktok.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to hide divs with specific classes
    function hideDivs() {
        const classesToHide = [
            'css-v2a75e-DivModalMask e1gjoq3k2',
            'css-1dw2wty-DivCenterWrapper e1gjoq3k7',
            'css-behvuc-DivModalContainer e1gjoq3k0'
        ];

        classesToHide.forEach(className => {
            const elements = document.querySelectorAll(`.${className.split(' ').join('.')}`);
            elements.forEach(element => {
                element.style.display = 'none';
            });
        });
    }

    // Run the hideDivs function when the page loads
    window.addEventListener('load', hideDivs);

    // Run the hideDivs function whenever the DOM is updated (e.g., when new content is loaded dynamically)
    const observer = new MutationObserver(hideDivs);
    observer.observe(document.body, { childList: true, subtree: true });
})();