在朋友多次的拜託之下,誕生了這支重現舊版開圖的腳本。
// ==UserScript==
// @name 巴哈姆特之舊版自動開圖
// @description 在朋友多次的拜託之下,誕生了這支重現舊版開圖的腳本。
// @namespace nathan60107
// @version 1.0
// @author nathan60107(貝果)
// @homepage https://home.gamer.com.tw/homeindex.php?owner=nathan60107
// @include https://forum.gamer.com.tw/C*
// ==/UserScript==
(function() {
'use strict';
//若是載入網頁自動開圖的狀態則變更為非自動開圖
if(Cookies.get("ckForumShrinkMedia")!="yes"){
Cookies.set("ckForumShrinkMedia", "yes", {
expires: 365,
domain: "gamer.com.tw"
})
window.location.reload()
}
//將按鈕改為手動開圖按鈕
var newFunc = `function() {
jQuery(".loadpic").click()
}`;
Forum.C.toggleDisplayImage = new Function("return "+newFunc)();
})();