Greasy Fork is available in English.

网站签到工具

用于各种论坛和网站自动签到\n论坛签到工具,签到工具,整合吾爱破解,飘云阁,卡饭论坛,网易云音乐,天使动漫论坛等论坛和网站自动点击签到\n根据论坛签到工具 二次开发 需要添加其他网站请在反馈里留言

< Commentaires sur 网站签到工具

Question / commentaire

§
Posté le: 2024-01-24

希望增加一个toURL_once功能,用于解决一些网站有每日任务可以完成的情况

比如164250 所反映的阡陌居的每日任务 在315行可以增加 toURL_once('/home.php?mod=task&do=apply&id=1') 用于直接完成该威望任务。 参考代码(已测试能够正常使用,不会影响任何已有功能):

function toURL_once(url,name='time'){
    const t = new Date();
    const time = [t.getFullYear(),t.getMonth()+1,t.getDate()].join("/");
    const itemName = "qd_"+name;
    if(localStorage.getItem(itemName) != time){
        localStorage.setItem(itemName,time);
        toURL(url);
    }
}
§
Posté le: 2024-01-26

顺便 发现一个不算bug的bug 访问 52pojie的搜索页面 登录后是没有办法在这个页面展示是否签到的状态的,所以会一直弹窗。
https://www.52pojie.cn/search.php?mod=forum&searchid=36928&orderby=lastpost&ascdesc=desc&searchsubmit=yes&kw=test 建议判断一下当前页面

if (isURL("52pojie.cn")) {
    if(isURL("search.php")){
            return ;
        }
……
Fxy29Auteur
§
Posté le: 2024-01-29

非常感谢 下一版更新将采纳

Poster une réponse

Connectez-vous pour poster une réponse.