Remove YouTube Shorts and Recommendations

Remove YouTube recommendations and redirect shorts to the main YouTube viewer.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Remove YouTube Shorts and Recommendations
// @namespace   Violentmonkey Scripts
// @match       https://*.youtube.com/*
// @grant       none
// @version     1.0.1
// @run-at      document-end
// @author      Kalavian
// @license     MIT
// @description Remove YouTube recommendations and redirect shorts to the main YouTube viewer.
// @noframes
// ==/UserScript==

// trying to program at 2:40 am goes hard :3 also trans rights :3

if(window.location.href.includes("shorts/")){
  window.location = window.location.href.replace("shorts/","watch?v=");
}
window.onload = function(){
  let successfullyRemoved = false;
  let removeAttempts = 0;
  const removeRecommendations = setInterval(function(){
    try {
      document.getElementById("secondary").remove();
      successfullyRemoved=true;
    }
    catch {
      successfullyRemoved=false;
    }
    finally {
      if(successfullyRemoved){
        clearInterval(removeRecommendations);
      }
    }
    removeAttempts++;
    if(removeAttempts>100){
      clearInterval(removeRecommendations);
      alert("Could not remove recommendations");
    }
  }, 50);
}