Greasy Fork is available in English.
斗鱼右侧弹幕框加高,显示更多弹幕内容
当前为
// ==UserScript==
// @name 斗鱼右侧弹幕框加高
// @namespace https://www.douyu.com/
// @version 0.2
// @description 斗鱼右侧弹幕框加高,显示更多弹幕内容
// @author Gerald
// @match https://*.douyu.com/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
$(document).ready(f);
function f() {
setTimeout(changeHeight, 1500);
}
function changeHeight() {
$("div#js-player-barrage").css("top", "0px");
}