|
本帖最后由 mxy123h 于 2020-5-21 17:42 编辑
- // ==UserScript==
- // @name New Userscript
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match https://www.205205.xyz/forum-45-1.html
- // @match https://www.205205.xyz/thread-*
- // @require https://code.jquery.com/jquery-1.12.4.min.js
- // @grant GM.setValue
- // @grant GM_setValue
- // @grant GM.getValue
- // @grant GM_getValue
- // ==/UserScript==
- (function() {
- console.log($(".num").length);
- $(".num").each(function(index){
- if($(this).children(".xi2").html()=="0"){
- if(GM_getValue("href")!=$(this).children(".xi2").attr("href")){
- window.open($(this).children(".xi2").attr("href"));
- GM_setValue("href",$(this).children(".xi2").attr("href"));
- }
- }else{
- window.location.reload();
- }
- });
- if($("#postlist").children("div").length<=2){
- var h = $(document).height()-$(window).height();
- $(document).scrollTop(h);
- }
- })();
复制代码
复制到油猴
别骂了 别骂了 在骂就骂傻了 我就花了5分钟写的,都没用过,也没测试过 |
|