Hide 7tv theather mode button on youtube

It is in the name

当前为 2023-03-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         Hide 7tv theather mode button on youtube
// @version      1.1
// @description  It is in the name
// @author       equmaq
// @match        https://www.youtube.com/*
// @grant        none
// @license      MIT
// @namespace https://greasyfork.org/users/990886
// ==/UserScript==

(function() {
    'use strict';

    function removeElementByXpath(xpath) {
        const element = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
        if (element) {
            element.remove();
        }
    }

    const targetXPath = '/html/body/ytd-app/div[1]/ytd-page-manager/ytd-watch-flexy/div[5]/div[1]/div/div[1]/div[2]/div/div/ytd-player/div/div/div[27]/div[2]/div[2]/div';

    setTimeout(() => {
        removeElementByXpath(targetXPath);
    }, 7000);

})();