Remove dislike/download buttons from youtube
当前为
// ==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);