YouTube - automatically expand subscription list

Automatically click the "Show More" subscriptions button in the side bar

À partir de 2018-05-10. Voir la dernière version.

// ==UserScript==
// @name         YouTube - automatically expand subscription list
// @description  Automatically click the "Show More" subscriptions button in the side bar
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @author       Valacar
// @include      https://www.youtube.com/*
// @noframes
// @grant        none
// ==/UserScript==

(function() {
  'use strict';

  function expandSubscriptions() {
    const drawerSections = document.querySelectorAll("app-drawer ytd-guide-section-renderer");
    for (let section of drawerSections) {
      const subscriptionHeader = section.querySelector('h3 a[href="/feed/channels"]');
      if (subscriptionHeader) {
        const expander = section.querySelector('#expander-item');
        if (expander && window.getComputedStyle(expander).getPropertyValue("display") === "block") {
          expander.click();
        }
      }
    }
  }

  window.addEventListener("loadstart", expandSubscriptions, true );
})();