VozResponsive

Help You Surf VozForums in limited-width window

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name VozResponsive
// @description Help You Surf VozForums in limited-width window
// @grant none
// @include *://*vozforums.com/showthread.php?t=*
// @version 0.0.1.20150827132010
// @namespace https://greasyfork.org/users/14513
// ==/UserScript==

posts = [].slice.call(document.querySelectorAll('[id^=post_message_]'));
bg = [].slice.call(document.querySelectorAll('table[id^=post]'));
function changeWidth(e,size){
	e.style.width = size;
	e.style.marginLeft = "0px";
}
function recalc(){
bg.forEach(function(b){
	changeWidth(b,"95vw");
});
posts.forEach(function(post,index,array){
	changeWidth(post,"88vw");
	//sig
	sigComment = post.nextSibling.nextSibling.nextSibling.nextSibling;
	//sig for first post
	if(index == 0){
	sigComment = sigComment.nextSibling.nextSibling.nextSibling.nextSibling;
	}
	if(sigComment.data ==  " sig "){
		sigNode = sigComment.nextElementSibling;
		changeWidth(sigNode,"88vw");
	}
});
}
//For Chrome,Safari
window.addEventListener("resize",recalc);
//onload
recalc();