您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove list params on URL and redirect. so that would not auto play next video when finish
// ==UserScript== // @name Disable Youtube playlist autoplay // @version 2024-10-19 // @description Remove list params on URL and redirect. so that would not auto play next video when finish // @author Pakr // @match https://www.youtube.com/watch?*&list=* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @namespace https://greasyfork.org/users/1382959 // ==/UserScript== (function() { 'use strict'; var url = location.href; var newurl = url.substring(0, url.search("&list=")); location.replace(newurl); })();