YouTube: unique playlist items

Makes YouTube playlist items' unique

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name YouTube: unique playlist items
// @name:hu YouTube: egyedi lejátszási lista elemek
// @description	Makes YouTube playlist items' unique
// @description:hu A Youtube lejátszási lista elemeit egyedivé teszi
// @version 1
// @include https://www.youtube.com/playlist*
// @grant none
// @namespace https://greasyfork.org/users/412587
// ==/UserScript==
function replaceLinks() {
  let links = document.querySelectorAll('.yt-simple-endpoint');
  for (let link of links) {
    let url = link.getAttribute('href'),
        rgxp = new RegExp('^\/watch\\?v=(.[^&]*)&(.*)$','i');
    if (url !== null)
      link.setAttribute(
        'href',
        url.replace(rgxp,'/watch?v=$1')
      );
  }
}
window.onload = function() {
	replaceLinks();
}
window.onscroll = function() {
	replaceLinks();
}