치지직 1080p 고정

치지직 1080p 고정합니다

// ==UserScript==
// @name         치지직 1080p 고정
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  치지직 1080p 고정합니다
// @match        *://chzzk.naver.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    const interval = setInterval(() => {
        const hrel = document.querySelectorAll(
            `.pzp-pc-setting-quality-pane__list-container > li:first-child:not(.pzp-pc-ui-setting-item--checked)`
        )[0];
        if (hrel) {
            hrel.click();
            console.log("1080 fix");
        }
    }, 500);
})();