Greasy Fork

来自缓存

Greasy Fork is available in English.

SOOP 플레이어 재생바 제거 스크립트

SOOP 라이브 플레이어 하단의 재생바(타임라인)를 숨깁니다.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==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);
})();