Greasy Fork

Greasy Fork is available in English.

斗鱼右侧弹幕框加高

斗鱼右侧弹幕框加高,显示更多弹幕内容

目前为 2019-02-22 提交的版本。查看 最新版本

// ==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");
}