FURSTREAM chat expander

Expand vertically the chat box on furstre.am pages

当前为 2014-06-23 提交的版本,查看 最新版本

// ==UserScript==
// @name        FURSTREAM chat expander
// @namespace   furstre.am
// @description Expand vertically the chat box on furstre.am pages
// @include     https://furstre.am/stream/*
// @version     2
// @grant       none
// ==/UserScript==

$(window).load(function(){
	$("#flex__1_contentwrapper > span").remove()
	$("#flex__1_contentwrapper > input").remove()
	$("#flex__1_contentwrapper > div.side-nav").remove()
	$("#flex__1_contentwrapper > div[style='text-align: center;']").remove()
	$(window).resize()
})

$(window).resize(function(e){
	$("#flex__1_contentwrapper > div.chat").height($(window).height())
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址