这个办法的优势,就是不用访问第三方网站。
打开loc论坛,最好是帖子列表或者帖子内容页面。只要是已登录状态,点一下浏览器收藏夹的这一项,就开始自动刷分了。这样访问完MJJ后,会自动触发右上角“积分”那里的刷新。
每3秒访问一个MJJ的个人空间,只会发送一个请求,因此不会被论坛CC防火墙误伤~全部访问完,大概用时30秒左右,这期间这个页面不要刷新了,或者跳转了。
步骤
浏览器收藏一个页面,点“更多..”,把网址那一栏也显示出来。
“名称”这一栏随便填,就是显示在浏览器收藏夹上的文本,譬如MJJ也可以。
把“网址”这一栏全删了,然后复制下面的脚本粘贴进去,确定。
脚本里的[1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 14201]是要访问的MJJ的UID,可以自己改成别的。
restSeconds指访问一个MJJ后,休息3秒,建议不要改小了,防止被论坛CC防火墙封IP。
javascript:(functiON() {
const userIds = [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 14201];
const restSeconds = 3;
const frameElement = document.createElement('iframe');
document.body.appendChild(frameElement);
let counting = 0;
autoCheckIn();
function autoCheckIn() {
const userId = userIds[counting];
const userProfileUrl = `https://${location.hostname}/space-uid-${userId}.html?ajaxmenu=1&inajax=1`;
frameElement.src = userProfileUrl;
if (++counting < userIds.length) {
console.warn(`正在访问第${counting}个MJJ`);
setTimeout(autoCheckIn, restSeconds * 1000);
} else {
frameElement.remove();
if (window.jQuery) {
jQuery('#extcreditmenu').mouseover();
}
}
}
})()


评论专区