YouTube Remove List

去掉YouTube视频链接list参数,以去掉youtube自动生成的playlist

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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();

})();