我攤牌了
我攤牌了~我沒有一直摸魚,在綫時間是刷的。
放假前寫了個油猴脚本挂在公司的測試平臺。
javascriptsetTimeout(() => {
let times = parseInt(localStorage.getItem('times') || 0);
if (times > 100) {
localStorage.setItem('times', 0);
location = 'https://www.baidu.com/'; // 跳出網站更新時長
return;
}
if (location.pathname === '/') {
let eles = document.getElementById('randomArticles').getElementsByClassName('title');
localStorage.setItem('times', times + 1);
location = eles[parseInt(eles.length * Math.random())].href;
}
else location = 'https://pwl.icu/'
}, 180000)
因爲放假了,所以沒有關掉刷了 3 天。
創建油猴脚本,貼裏面。