您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically click the "Show More" subscriptions button in the side bar
当前为
- // ==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 );
- })();