Expand vertically the chat box on furstre.am pages
当前为
// ==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())
})