Remove channel and next video overlays on YouTube

Removes the large "play next" overlays and channel link that cover the end of some videos on YouTube

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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://greasyfork.org/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; }');
})();