// ==UserScript== // @name 看雪论坛优化显示+自动签到 // @description 移除了置顶主题,一天内发布的新帖蓝框标记显示,自动签到 // @namespace https://greasyfork.org/zh-CN/users/78403 // @version 2019.1.1 // @author jsgod // @icon https://www.pediy.com//favicon.ico // @match https://bbs.pediy.com/* // @grant GM_setValue // @grant GM_getValue // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // @run-at document-end // @downloadURL none // ==/UserScript== (function () { //========================================================================================= $('.thread.top_1').remove(); $('.thread.top_2').remove(); $('.thread.top_3').remove(); $('.thread').each(function (i, item) { var timeSpan = $(this).find("span.date.text-grey"); if (timeSpan) { var timestr = timeSpan.html(); if (!timestr) { } else if ( timestr.includes("小时前") || timestr.includes("分钟前")) { $(this).css({ "color": "blue", "border": "2px solid blue" }); } } }); //========================= 自动签到一下================================================================ q签到(); function q签到() { var curday = new Date().toLocaleDateString(); if (curday == localStorage.pediy签到) { } else { $.post('user-signin.htm', function (code, message) { console.log("执行签到返回", code, message); localStorage.pediy签到 = curday; }); } } //========================================================================================= })();