您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
롤캐 쿠팡용
// ==UserScript== // @name lolcast-coup // @namespace http://tampermonkey.net/ // @version 1.0 // @description 롤캐 쿠팡용 // @author lolcast // @match https://poooom6.blogspot.com/2025/04/livecoupang-play.html* // @match https://poooom6.blogspot.com/2025/04/cp*.html* // @grant GM_addStyle // @run-at document-start // ==/UserScript== (function() { 'use strict'; const currentUrl = window.location.href; if (currentUrl.includes('livecoupang-play.html')) { GM_addStyle(` #chat { display: none !important; } .wrapper { width: 100% !important; } `); } else if (currentUrl.includes('/cp')) { GM_addStyle(` #chat { display: none !important; } #video { width: 100vw !important; height: 100vh !important; position: fixed !important; top: 0 !important; left: 0 !important; object-fit: contain; background-color: black; } body { overflow: hidden !important; } `); } })();