Twitch - Disable empty "Featured Clips Only" page

Automatically toggles "Featured Clips Only" off if the clips page doesn't have any featured clips.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Twitch - Disable empty "Featured Clips Only" page
// @version      1.02
// @description  Automatically toggles "Featured Clips Only" off if the clips page doesn't have any featured clips.
// @author       Taizun
// @match        https://www.twitch.tv/*
// @grant        none
// @license      MIT
// @namespace    https://greasyfork.org/en/scripts/472692-twitch-always-disable-featured-clips-only
// ==/UserScript==

// This script is no longer maintained. Please install FFZ if you'd like the same functionality.

(function() {
    'use strict';

    // Flag to track if the button has been clicked during this page navigation
    let buttonClicked = false;

    // Function to check if the SVG element exists on the page
    function svgExists() {
        const svgSrc = 'https://static-cdn.jtvnw.net/c3-vg/pinned-clips/clip.svg';
        const svgElements = document.querySelectorAll(`img[src="${svgSrc}"]`);
        const svgFound = svgElements.length > 0;

        // Reset the buttonClicked flag when SVG disappears
        if (!svgFound) {
            buttonClicked = false;
        }

        return svgFound;
    }

    // Function to click the button
    function clickButton() {
        const button = document.getElementById('featured-clips-toggle');
        if (button && !buttonClicked) {
            button.click();
            buttonClicked = true; // Set the flag to true after clicking
            console.log('Button clicked.');
        }
    }

    // Watch for changes in the DOM using MutationObserver
    const observer = new MutationObserver(function(mutationsList) {
        for (const mutation of mutationsList) {
            if (mutation.type === 'childList' && svgExists()) {
                clickButton();
                // The observer will keep monitoring for changes
            }
        }
    });

    // Start observing changes in the entire document
    observer.observe(document, { childList: true, subtree: true });

})();

// This script is no longer maintained. Please install FFZ if you'd like the same functionality.