🏠 返回首頁 

Greasy Fork is available in English.

Авто переход к "Недавно опубликованные"

Авто переход к "Недавно опубликованные" на главной странице

// ==UserScript==
// @name        Авто переход к "Недавно опубликованные"
// @namespace   Violentmonkey Scripts
// @match       *://www.youtube.com/*
// @grant       none
// @version     1.1
// @author      Kenseori
// @license     MIT
// @description Авто переход к "Недавно опубликованные" на главной странице
// ==/UserScript==
(function() {
'use strict';
const toggleRecentUploadsFilter = () => {
const button = Array.from(document.querySelectorAll('yt-chip-cloud-chip-renderer'))
.find(el => el.querySelector('yt-formatted-string')?.textContent === 'Недавно опубликованные');
if (button && button.getAttribute('aria-selected') === 'false') {
button.click();
console.log('Фильтр "Недавно опубликованные" включен');
}
};
new MutationObserver(() => toggleRecentUploadsFilter()).observe(document.body, { childList: true, subtree: true });
window.addEventListener('load', toggleRecentUploadsFilter);
})();