移除放大鏡功能的腳本
適用於支援 User Stylish 的瀏覽器
以 Firefox 的 Stylish 套件為例
新建一個腳本,名稱 Disable Google Instant Previews
複製貼上以下語法,儲存後即可生效
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.google.") {
/* Disable Google instant previews */
/* hidden magnifying glass icon */
.vspib {
visibility: hidden !important;
}
/* hidden preview window */
#vspb {
left: -250px !important;
width: 0px !important;
height: 0px !important;
}
}
原始來源是日本網友提供 (日本很多人對此項功能感到不滿)
http://d.hatena.ne.jp/renmen/20101112/1289575004
我把它修改成僅套用至 Google 網站 (原本是套用至所有網站)
感覺上還能修的更好一些,但功力有限,請多指教
--
適用於支援 User Stylish 的瀏覽器
以 Firefox 的 Stylish 套件為例
新建一個腳本,名稱 Disable Google Instant Previews
複製貼上以下語法,儲存後即可生效
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://www.google.") {
/* Disable Google instant previews */
/* hidden magnifying glass icon */
.vspib {
visibility: hidden !important;
}
/* hidden preview window */
#vspb {
left: -250px !important;
width: 0px !important;
height: 0px !important;
}
}
原始來源是日本網友提供 (日本很多人對此項功能感到不滿)
http://d.hatena.ne.jp/renmen/20101112/1289575004
我把它修改成僅套用至 Google 網站 (原本是套用至所有網站)
感覺上還能修的更好一些,但功力有限,請多指教
--
All Comments