您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides "Download", "Clip", "Thanks" and "Promote" buttons on video. (special thanks to aubymori for the old version of the script)
// ==UserScript== // @name Youtube - hide "Download, Clip and Thanks (including Promote)" buttons // @namespace http://tampermonkey.net/ // @version 0.5 // @description Hides "Download", "Clip", "Thanks" and "Promote" buttons on video. (special thanks to aubymori for the old version of the script) // @author Magma_Craft // @match *://www.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // @grant none // @license MIT // ==/UserScript== const rctStyle = document.createElement("style"); rctStyle.innerHTML = ` ytd-download-button-renderer { display: none !important; } #flexible-item-buttons [aria-label="Promote"] { display: none !important; } #flexible-item-buttons [aria-label="Clip"] { display: none !important; } #flexible-item-buttons [aria-label="Thanks"], #flexible-item-buttons [title="Show support with Super Thanks"] { display: none !important; } `; document.getElementsByTagName("head")[0].appendChild(rctStyle); async function waitForElm(q) { while (document.querySelector(q) == null) { await new Promise(r => requestAnimationFrame(r)); }; return document.querySelector(q); }; document.addEventListener("yt-page-data-updated", () => { waitForElm("#top-level-buttons-computed.ytd-menu-renderer").then((btns) => { var abList = btns.querySelectorAll("ytd-button-renderer"); for(i = 0; i < abList.length; i++) { if (abList[i].data.icon.iconType == "MONEY_HEART" || abList[i].data.icon.iconType == "CONTENT_CUT") { abList[i].remove(); } } }); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址