Greasy Fork is available in English.
去掉斗鱼右侧弹幕框上方无用元素后加高弹幕框高度
当前为
// ==UserScript==
// @name 调整斗鱼右侧弹幕框高度
// @namespace https://www.douyu.com/
// @version 0.1
// @description 去掉斗鱼右侧弹幕框上方无用元素后加高弹幕框高度
// @author Gerald
// @match https://www.douyu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function(){
var normalRoom = RegExp("\\d{5}$");
if (window.location.href.match(normalRoom)) {
//normal room
$("div.chat-cont").css("top", "-104px");
}
else {
//special room
$("div.chat-cont").css("top", "0px");
}
});
})();