您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Deletes the memberlist from couchparty in tvnow
// ==UserScript== // @name tvnow CleanCouchparty // @namespace https://tribbe.de // @version 1.0.4 // @description Deletes the memberlist from couchparty in tvnow // @author Tribbe // @match https://www.tvnow.de/* // @require https://greasyfork.org/scripts/6250-waitforkeyelements/code/waitForKeyElements.js?version=23756 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js // ==/UserScript== // Remove participant-list and rescale the player waitForKeyElements ("now-participant-list", function(jNode) { if(jNode.length == 1) { jNode[0].remove(); var nowplayer = document.getElementsByTagName("now-player"); if(nowplayer.length == 1) nowplayer[0].style.width = '100%'; } });