FURSTREAM chat expander

Expand vertically the chat box on furstre.am pages

目前為 2014-06-22 提交的版本,檢視 最新版本

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

$(window).load(function(){
	$("#flex__1_contentwrapper > span").remove()
	$("#flex__1_contentwrapper > input").remove()
	$("#flex__1_contentwrapper > div.side-nav").remove()

	var extra_height = $("#flex__1_mcontentwrapper").height() - $("#flex__1_contentwrapper").height();
	$("#flex__1_contentwrapper > div.chat").height($("#flex__1_contentwrapper > div.chat").height() + extra_height)
	$(window).resize()
})