福利吧自动签到油猴脚本
导读
油猴自用脚本,自动签到,觉得有用的朋友给点个赞啊
// ==UserScript==
// @Name AutoFuliba
// @namespace http://tampermonkey.net/
// @version 0.1
// @description AutoFuliba !!!
// @author You
// @match *://www.wnflb99.com/
// @match *://www.wnflb99.com/forum-*.html
// @match *://www.wnflb99.com/forum.php?mod=forumdisplay&*
// @Require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @grant none
// ==/UserScript==
function autoFuliba(){
const image1 =$("#fx_checkin_b");
const a1 = $("#fx_checkin_topb");
const currentURL = window.location.href;
if (image1.attr("alt") == '签到领奖'){
image1.click();
window.location.assign(currentURL);
}
}
(function() {
$(document).ready(function(){
autoFuliba();
});
})();