您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
删除右侧弹幕栏,视频区域居中、放大,隐藏比分显示
// ==UserScript== // @name 黑白直播优化 // @namespace http://tampermonkey.net/ // @version 1.3 // @description 删除右侧弹幕栏,视频区域居中、放大,隐藏比分显示 // @author yt // @match *://www.heibaizhibo.com/live/* // @match *://www.heibaitiyu.com/live/* // @match *://www.365heibai.com/live/* // @match *://www.hbzb666.com/live/* // @match *://www.heibai999.com/live/* // @match *://www.hbzb999.com/live/* // @require http://cdn.staticfile.org/jquery/2.1.4/jquery.min.js // @compatible chrome // @compatible firefox // @compatible edge // @grant GM_addStyle // @run-at document-start // ==/UserScript== /* globals $*/ (function() { 'use strict'; window.onload = function() { //删除右侧弹幕栏 $('.boxright1').remove(); //视频区域居中 $('.boxleft1').css('margin-right', '0px'); //视频区域放大 $('.video-box').css('height', '900px'); //隐藏比分显示 $('.score').remove(); } })();