Greasy Fork 还支持 简体中文。

Playlist thumbnail to overview

Replaces playlist thumbnail link on https://www.youtube.com/feed/playlists* from link to first video in playlist to link to playlist overview.

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Playlist thumbnail to overview
// @namespace   Luis
// @match       https://www.youtube.com/feed/playlists*
// @grant       none
// @version     1.0.1
// @author      Luis
// @description Replaces playlist thumbnail link on https://www.youtube.com/feed/playlists* from link to first video in playlist to link to playlist overview.
// @license     MIT
// ==/UserScript==

setTimeout(() => {
  let targets = document.querySelectorAll('a[href^="/watch?v="].yt-lockup-view-model-wiz__content-image');

  for (let el of targets) {
    el.href = el.href.replace(/watch\?v=.+?&/, "playlist?");
    el.onclick = (e) => e.stopPropagation();
  }
}, 1000);