// ==UserScript== // @name 殁漂遥 // @icon https://www.mpyit.com/wp-content/themes/1/images/logo20210331a.png // @namespace mpyitOptimizing // @version 1.15.5 // @description mpyit.com 浏览体验优化 // @author 殁漂遥 // @include *://*mpyit.com/* // @grant none // @require https://code.jquery.com/jquery-latest.js // @downloadURL none // ==/UserScript== (function () { let verify_code_string = "在这里输入验证码"; let complete_url = window.location.href; let valiable = complete_url.split("?")[0]; let btwaf = getUrlParam("btwaf"); $("#post:empty").remove(); $("body").css("backgounds", "none"); $("body").append(""); window.history.pushState({},0,valiable); $("body").append(""); $("#topnav").find("div:visible img").first().parent().remove(); $(".footer_top").remove(); $(".link").remove(); $(".link_b").remove(); $("div[class*='footer_bottom']").remove(); $(".menu").append(''); let ad_list = ["#3101"]; for (let x in ad_list) $(ad_list[x]).remove(); let is_home = (window.location.pathname.length <= 2); if (is_home) { $("#pagenavi").remove(); $(".scroll").remove(); adTag(); feedback(); $("#wrapper > div").each(function(key, item) { let item_class = $(this).attr("class"); let item_id = $(this).attr("id"); if (item_class == undefined && item_id == undefined) $(this).remove(); }); } else { $("#entry > div[class!='huoduan_hide_box']").remove(); let verify_code = $("#entry input[type=text]"); if (verify_code.length > 0) { $.ajax({ url: window.location.href, type: "POST", data: {huoduan_verifycode: verify_code_string}, success: function (result) { let start = result.search(/\<\!--wechatfans start--\>/); let end = result.search(/\<\!--wechatfans end--\>/); let that_div = verify_code.parent().parent(); let div_style = "border:2px dashed #06a0ff; padding:10px;margin:10px 0;line-height:200%;overflow:hidden;clear:both;background-position: 100% 50%;background-repeat: repeat-x;background-size: 30.904%;background-attachment: scroll;box-sizing: border-box;" that_div.attr("style", div_style + "background-color:#FFBED0;"); that_div.html("加载中"); if (start == end) { that_div.attr("style", div_style + "background-color:#FFCBCB;"); that_div.html("加载失败"); } else { that_div.attr("style", div_style + "background-color:#EBF7FF;"); that_div.html(result.slice(start, end)); } } }); } } })(); let scroll_allow = true; $(".entry img").click(function () { return false; }); $(window).scroll(function () { if ($(document).scrollTop() + $(window).height() >= $(document).height()) { if (scroll_allow == false) return; let this_url = window.location.href; let reg = /\.html/; let page_div = ""; if (reg.test(this_url) == false) { scroll_allow = false; let page_url = ""; let has_page = /\/page\/\d{1,9}/; if (has_page.test(this_url)) { let page_str = this_url.match(has_page)[0]; let page_number = parseInt(page_str.match(/\d{1,9}/)[0]) + 1; page_div = "page-" + page_number; page_url = this_url.replace(page_str, "/page/" + page_number); } else { let page_number = parseInt($("#page-number").val()); page_div = "page-" + page_number; page_url = this_url + "/page/" + page_number; $("#page-number").val(page_number + 1); } $("#wrapper").append("
"); page_url += "?btwaf=" + $("#btwaf").val(); $.ajax({ url: page_url, type: "GET", success: function (result) { let start = result.search(/\
/); let end; if (start == -1) { start = result.search(/\
/); end = result.search(/\
/); } else { end = result.search(/\
div").each(function (key, item) { let not_ad = /post-\S{1,} post/.test($(this).attr("class")); if (!not_ad) $(this).remove(); }); scroll_allow = true; }, error: function (error) { window.reload(); } }); } } }); document.body.oncopy = function () { return; }; function getUrlParam(name) { let reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); let r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return ""; } function adTag() { $("div[class*='post-'] div h2").each(function (key, index) { let post = $(this).contents(); if (!(/img/.test(post[1].data))) $(this).append(' ' + unescape('%u5E7F%u544A') + ''); }); } function feedback() { $("a[href*='qqqun']").parent().html('在使用该脚本时遇到问题请及时到 这里 反馈'); }