youtube redirect to sub feed

Redirects youtube.com base site to the subscription feed

  1. // ==UserScript==
  2. // @name youtube redirect to sub feed
  3. // @namespace Violentmonkey Scripts
  4. // @match https://www.youtube.com/*
  5. // @match https://www.youtube.com/
  6. // @grant none
  7. // @version 1.1
  8. // @license MIT
  9. // @author -
  10. // @description Redirects youtube.com base site to the subscription feed
  11. // ==/UserScript==
  12.  
  13. //changing this because youtube is stupid and doesnt do a full refresh when you change pages
  14.  
  15. setInterval(function(){
  16.  
  17. if (window.location.href == "https://www.youtube.com/") {
  18. window.location = "https://www.youtube.com/feed/subscriptions";
  19. }
  20.  
  21. }, 250);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址