一直想把刺眼的白色背景改成其他顏色
試了一下Chrome Stylist
可以成功將網頁背景改成淡綠色
但某些網頁圖片會被蓋掉
(也沒繼續研究如何修改)
後來又在網路上找到利用script來改變背景顏色
同樣也能成功將網頁背景改成淡綠色
而且似乎不會覆蓋任何圖片
但卻變成無法顯示google reader中的文章

可以請高手幫忙修改下面這段內容嗎

能讓google reader中的文章能正常顯示
謝謝~
===================================================================
// ==UserScript==
// @name color
// @match http://www.google.com.tw/reader/view/*
// ==/UserScript==
document.body[removed]+='<style type=text/css>* {background-color:#90EE90!important;}</style>';
var obj ;
var eType = new Array("td","div","table");
var mt;
for(var i=0;i<eType.length;++i){
obj = document.getElementsByTagName(eType[i]);
for(var j=0;j<obj.length;++j){
obj[j].style.backgroundColor = "#90EE90!important";
}
obj = null;
}
===================================================================