Greasy Fork is available in English.
SOOP 라이브 플레이어 하단의 재생바(타임라인)를 숨깁니다.
// ==UserScript==
// @name SOOP 플레이어 재생바 제거 스크립트
// @namespace http://tampermonkey.net/
// @version 1.0
// @description SOOP 라이브 플레이어 하단의 재생바(타임라인)를 숨깁니다.
// @author You
// @match https://play.sooplive.com/*
// @match https://www.sooplive.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// CSS를 삽입하여 재생바를 강제로 숨깁니다.
const style = document.createElement('style');
style.innerHTML = `
/* 재생바 전체 컨테이너 숨기기 */
.player_ctrlBox .progress {
display: none !important;
}
/* 재생바가 사라진 후 하단 컨트롤바 위치 조정 (선택 사항) */
.player_ctrlBox .ctrlBox {
margin-top: 0 !important;
}
`;
document.head.appendChild(style);
})();