Remove dislike/download buttons

Remove dislike/download buttons from youtube

目前為 2022-05-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Remove dislike/download buttons
// @icon        https://bit.ly/3PHKdEj
// @description Remove dislike/download buttons from youtube
// @namespace   com.youtube.com.remdislikedownload
// @license     GNU GPLv3
// @include     https://www.youtube.com/*
// @version     1.0.0
// ==/UserScript==

setTimeout(() => {
    const items = document.getElementsByClassName("style-scope ytd-menu-renderer force-icon-button style-text");
    // Dislike is second item
    items[1].remove();

    // Remove Download button
    const downtag = document.getElementsByTagName('ytd-download-button-renderer');
    downtag[0].remove();
}, 3000);