Greasy Fork

Greasy Fork is available in English.

Kick.com - Auto select best quality

Auto select best quality

当前为 2025-04-11 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Kick.com - Auto select best quality
// @namespace    http://greasyfork.icu/en/users/1200587-trilla-g
// @version      1.1
// @author       Trilla_G
// @description  Auto select best quality
// @match        *://kick.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kick.com
// @grant        none
// @run-at       document-idle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to check if the quality option is selected and click it if not
    let checkQuality = () => {
        let qualityOption = document.querySelector("div.betterhover\\:hover\\:text-primary:nth-child(2)");
        
        if (qualityOption) {
            let isSelected = qualityOption.parentNode.getAttribute("aria-checked") === "true";
            if (!isSelected) {
                console.log("Selecting 1080p60 quality...");
                qualityOption.click();
                qualityOption.dispatchEvent(new Event('click', { bubbles: true }));
            }
            return true;
        }
        return false;
    };

    // Wait for the quality menu to load, then apply the selection
    let setStreamQuality = () => {
        if (!checkQuality()) {
            console.log("Quality option not found yet, retrying...");
        }
    };

    // Run the setStreamQuality function every 500ms
    let interval = setInterval(setStreamQuality, 500);

    // Stop checking after 10 seconds to prevent unnecessary loops
    setTimeout(() => {
        clearInterval(interval);
    }, 10000);
})();