您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去掉YouTube视频链接list参数,以去掉youtube自动生成的playlist
// ==UserScript== // @name YouTube Remove List // @namespace http://tampermonkey.net/ // @version 1.3 // @description 去掉YouTube视频链接list参数,以去掉youtube自动生成的playlist // @license MIT // @author pianha // @match https://www.youtube.com/watch* // @run-at document-idle // ==/UserScript== (function() { 'use strict'; const STORAGE_KEY = 'ytRemoveListEnabled'; let enabled = localStorage.getItem(STORAGE_KEY); if (enabled === null) enabled = 'true'; enabled = enabled === 'true'; function removeListParam() { if (!enabled) return; const url = new URL(window.location.href); if (url.searchParams.has('list')) { url.searchParams.delete('list'); window.history.replaceState({}, document.title, url.href); } } removeListParam(); })();