寫了簡單的修正,請依循底下步驟:
- 必須裝有Greasemonkey
- 安裝 olginfoFix.user.js
- 到第三屆 Top15 票選活動投Greasemonkey一票
<附錄>olginfoFix.user.js 內容
代碼:
// ==UserScript==
// @author shyangs
// @name 絕代非官網修正
// @description 絕代非官網網址修正
// @version 0.1
// @include http://www.olginfo.com/*
// ==/UserScript==
(function() {
if (location.href=="http://www.olginfo.com/")
{//簡單重寫http://www.olginfo.com/
document.getElementsByTagName("html")[0].innerHTML='<body><table align="center" height="100%"><tr><td><ul><li><a href="tth/info/ind.html">新絕代雙驕ONLINE</a><li><a href="olgmarket/index.html">物價參考網</a></ul></td></tr></table></body>'
}
var n=document.images.length;//圖片計數
for (var i=0;i<n;i++)
{//圖片網址反斜線修正為斜線
document.images[i].src=document.images[i].src.replace(/\\/g,"/");
}
})();