Youtube-logo as subscriptionlink

With this script the youtube logo is now linked to the subscription-feed like in the old days :)

  1. // ==UserScript==
  2. // @name Youtube-logo as subscriptionlink
  3. // @namespace https://www.youtube.com/
  4. // @version 1.0
  5. // @description With this script the youtube logo is now linked to the subscription-feed like in the old days :)
  6. // @author k-ruben.de
  7. // @match https://www.youtube.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. 'use strict';
  12.  
  13. var element = document.getElementById("logo-container");
  14. element.href = "/feed/subscriptions";
  15.  
  16. var element2 = document.getElementByTagName("area")[0];
  17. element2.href = "/feed/subscriptions";

QingJ © 2025

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