您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the large "play next" overlays and channel link that cover the end of some videos on YouTube
// ==UserScript== // @name Remove channel and next video overlays on YouTube // @namespace http://tampermonkey.net/ // @version 1.0 // @description Removes the large "play next" overlays and channel link that cover the end of some videos on YouTube // @author https://gf.qytechs.cn/en/users/728793-keyboard-shortcuts // @match https://www.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=128&domain=youtube.com // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { GM_addStyle('.ytp-ce-element.ytp-ce-website.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-channel.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-merchandise.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-website.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-channel.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-merchandise.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-website.ytp-ce-element-show.ytp-ce-force-expand,' + '.ytp-ce-element.ytp-ce-channel.ytp-ce-element-show.ytp-ce-force-expand,' + '.ytp-ce-element.ytp-ce-element-show,' + '.ytp-ce-element.ytp-ce-channel.ytp-ce-channel-this' + '.ytp-ce-element.ytp-ce-channel.ytp-ce-channel-this.ytp-ce-top-left-quad' + '.ytp-ce-element.ytp-ce-merchandise.ytp-ce-element-show.ytp-ce-force-expand' + ' { display: none; visibility: hidden; width: 0px; height: 0px; opacity:0; }'); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址