Youtube - Auto-expand Subscriptions

Auto expands your subscriptions, when using grid view, so that you do not miss out of any new videos because you forgot about the "show more" button.

  1. // ==UserScript==
  2. // @name Youtube - Auto-expand Subscriptions
  3. // @version 0.1.1
  4. // @description Auto expands your subscriptions, when using grid view, so that you do not miss out of any new videos because you forgot about the "show more" button.
  5. // @author Luxocracy
  6. // @match https://www.youtube.com/feed/subscriptions*
  7. // @grant none
  8. // @namespace https://gf.qytechs.cn/users/30239
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var sections = document.querySelectorAll('.item-section .yt-uix-expander-collapsed');
  14. for(var i=0; i < sections.length; i++) {
  15. sections[i].attributes.class.value = sections[i].attributes.class.value.replace('yt-uix-expander-collapsed', '');
  16. }
  17. })();

QingJ © 2025

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