您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
专为 Adblock4limbo 设计;https://greasyfork.org/zh-CN/scripts/443290-adblock4limbo;
当前为
// ==UserScript== // @name Function4limbo.X // @namespace https://limbopro.com/Adguard/Adblock4limbo.function.js // @version 0.1.10.26 // @license CC BY-NC-SA 4.0 // @description 专为 Adblock4limbo 设计;https://greasyfork.org/zh-CN/scripts/443290-adblock4limbo; // @author limbopro // @match https://twitter.com/* // @match https://www.xvideos.com/* // @match https://www.youtube.com/* // @match https://developer.mozilla.org/* // @match https://venus-av.com/* // @exclude https://limbopro.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=limbopro.com // @run-at document-end // @grant none // ==/UserScript== /** * --------------------------- * Author: limbopro * View: https://limbopro.com/archives/12904.html * --------------------------- */ // 各种 function 的集合 // 获取M3U8文件资源链接 var repeat_regex = ["https:?\/\/.*?hls.*?\.m3u8", "https:?\/\/.*?phncdn.*?hls.*?\.m3u8", "https:?\/\/.*?mushroomtrack.*?\.m3u8"] function m3u8_tempt(x) { var i, url_result; var url_regex = new RegExp(x, "gi") var ele = ["script", "a"]; var ele_catch = document.querySelectorAll(ele); for (i = 0; i < ele_catch.length; i++) { if ((url_result = url_regex.exec(ele_catch[i].innerHTML)) != null) { document.getElementById("copy").value = url_result; console.log("Catch it") } } } /* 循环播放 */ function video_loopPlay() { setInterval(function () { var ele = ["video[preload='none', 'common'],video#player"]; var ele_catch = document.querySelector(ele); if (ele_catch) { ele_catch.play() //console.log("视频已开启循环播放;") } }, 1000) } /* 延后播放 */ function video_delayPlay(time) { setTimeout(function () { var ele = ["video[preload='none', 'common'],video#player"]; var ele_catch = document.querySelector(ele); if (ele_catch) { ele_catch.play() //console.log("视频已延后播放;") } }, time) } function selector_one_by_one(x) { // 按选择器一个一个移除 if (document.querySelector(x)) { document.querySelectorAll(x).forEach((x) => { x.remove() }) } } // 先新建一个按钮 function adblock4limbo(x, csp) { // 新建 x4Div let new_body = document.createElement('div'); // body 换为 div new_body.id = 'x4Div'; // 高等悬挂 let body = document.body; //document.querySelector('html').appendChild(new_body); // 插入到现有 body 后 document.querySelector('html').insertBefore(new_body, body); // 插入到现有 body 前 // 定义按钮 let x4Home = document.createElement('button') x4Home.id = "x4Home"; if (csp == 'nocsp') { console.log('创建不带CSP属性按钮...') x4Home.setAttribute("class", "cms"); //x4Home.setAttribute('onclick', "body_build('true');") var nocsp = 'padding:0px;transition-duration:666ms;transition-property:height;z-index:114154;bottom:15%;right:0.5%;position:fixed;border:transparent;background-color:transparent;background-image:url("https://raw.githubusercontent.com/limbopro/Adblock4limbo/main/Adguard/uploads/imgs/Adblock4limbo.svg") !important;background-size:100% !important;background-repeat:no-repeat;'; x4Home.style = nocsp; document.getElementById('x4Div').appendChild(x4Home); // 在 x4Div 下添加按钮 document.getElementById('x4Home').style.height = x; document.getElementById('x4Home').style.width = x; if (window.innerHeight < 600) { document.querySelector('#x4Home').style.bottom = '30%'; } } else if (csp == 'csp') { console.log('创建带CSP属性按钮...') var csp = 'box-shadow:inset 0px 0px 15px 3px #23395e;background:linear-gradient(to bottom,#2e466e 5%,#415989 100%);background-color:#2e466e;border-radius:17px;border:1px solid #1f2f47;display:inline-block;cursor:pointer;color:#ffffff;font-family:Arial;font-size:15px;padding:6px 13px;text-decoration:none;text-shadow:0px 1px 0px #263666;padding:0px;transition-duration:666ms;transition-property:height;z-index:114154;bottom:15%;right:0.5%;position:fixed;border:transparent;border-radius:50%;'; x4Home.style = csp; x4Home.textContent = '导航'; document.getElementById('x4Div').appendChild(x4Home); // 在 x4Div 下添加按钮 //x4Home.setAttribute("class", "cspButton"); document.getElementById('x4Home').style.height = x; document.getElementById('x4Home').style.width = x; if (window.innerHeight < 600) { document.querySelector('#x4Home').style.bottom = '30%'; } } } // 定义按钮尺寸 function x4Home_button_width() { //const userAgent = navigator.userAgent.toLowerCase(); const window_innerWidth = window.innerWidth; if (window_innerWidth <= 920) { //if (/\b(android|iphone|ipad|ipod)\b/i.test(userAgent)) { var size = '54px'; return size; } else { var size = '75px'; return size; } } // 自动隐藏按钮 var click_dont_move_and_click = 600; function hidden_adblock4limbo() { if (document.getElementById('x4Home')) { ////console.log("// hidden_adblock4limbo() 按钮存在") // 存在 var last_known_scroll_position = window.scrollY; const x4Home = document.getElementById('x4Home'); const new_div = document.getElementById('x4Div'); setTimeout(() => { console.log("本次移动距离" + Math.abs(last_known_scroll_position - window.scrollY)) //if (Math.abs(last_known_scroll_position - window.scrollY) > 1000) { if (last_known_scroll_position !== window.scrollY) { ////console.log("// hidden_adblock4limbo() 按钮存在,且页面还在滑动..."); if (document.querySelector("#navigation").style.zIndex > 0) { document.querySelector("#navigation").style.zIndex = ++document.querySelector("#navigation").style.zIndex; } znsh_unlock(); x4Home_button('1'); if (click_dont_move_and_click < 400) { // 定时400秒 click_dont_move_and_click = click_dont_move_and_click + 600; } else { click_dont_move_and_click = click_dont_move_and_click + 120; } document.querySelector('#x4Home').style.zIndex = document.querySelector('#x4Home').style.zIndex + 1; } else { x4Home_button('0'); click_dont_move_and_click = --click_dont_move_and_click; if (click_dont_move_and_click < 300) { znsh(); } ////console.log("// hidden_adblock4limbo() 按钮存在,页面已停止滑动,即将隐藏按钮..."); } //console.log("现在导航按钮显示次数比隐藏次数多了" + click_dont_move_and_click + "次"); }, 1000) } else { ////console.log("// hidden_adblock4limbo() 按钮存在,但已隐藏..."); } } document.body.addEventListener('click', () => { // 点击计数器 if (click_dont_move_and_click < 400) { // 定时400秒 click_dont_move_and_click = click_dont_move_and_click + 600; } else { click_dont_move_and_click = click_dont_move_and_click + 120; } }) setInterval(() => { hidden_adblock4limbo(); // 长期不动隐藏左下角按钮 }, 3000) let crisp_auto_hiddenX = setInterval(() => { crisp_auto_hidden(); // 默认隐藏 crisp 聊天窗口 }, 3000) // 长时间不动则隐藏按钮 function x4Home_button(x) { // 显示导航按钮 const x4Home = document.getElementById('x4Home'); const new_div = document.getElementById('x4Div'); if (x == 1 && !(document.getElementById('x4Home') === null)) { x4Home.style.height = x4Home_button_width(); x4Home.style.width = x4Home_button_width(); new_div.style.zIndex = '114154'; } else { if ((x4Home.style.height == "0%")) { } else { setTimeout(() => { x4Home.style.height = '0%'; }, 500) } } } // 当鼠标🖱靠近时显示按钮 //onload = () => { const mousemove_element = document.querySelectorAll('body')[0]; // 绑定鼠标移动事件 mousemove_element.addEventListener('mousemove', e => { ////console.log("// mousemove_element 鼠标所在位置:" + e.offsetX); ////console.log("// mousemove_element 要触发位置为:" + Math.floor(0.55 * window.innerWidth)); if (document.body.clientWidth) { if (e.offsetX >= 0.85 * window.innerWidth) { x4Home_button('1'); } } }); //} // 为按钮添加监听事件 防止被破坏 function _onclick_button() { if (document.querySelector('button#x4Home')) { document.querySelector('button#x4Home').addEventListener("click", function () { body_build('true'); // 添加监听事件 }) } setTimeout(() => { if (document.querySelector("button#xX")) { document.querySelector('button#xX').addEventListener("click", function () { body_build('false'); // 添加监听事件 }) } if (document.querySelector('button#webChat')) { document.querySelector('button#webChat').addEventListener("click", function () { crisp_active('1'); // 添加监听事件 }) } if (document.querySelector('button#hidedaohang')) { document.querySelector('button#hidedaohang').addEventListener("click", function () { hide_button_switch('1'); // 添加监听事件 }) } if (document.querySelector('a#lsj')) { document.querySelector('a#lsj').addEventListener("click", function () { open_googlesearch_iframe(); // 添加监听事件 }) } }, 1000) } // 监听导航页的按钮是否被点击 function if_a_click_then_close_daohang() { if (document.querySelector('div.echo')) { document.querySelector('div.echo').querySelectorAll('a').forEach((x) => { x.addEventListener('click', () => { body_build('false'); }) }) } } var nsfw_list_regex = new RegExp(/\b(missav|javlib|attackers|18comic|javday|hamnime|takara|tameikegoro|deeps|moodyz|s1s1s1|nagae|ideapocket|dasdas|oppai|kawaii|satsu|mgstage|manji-group|rocket|muku|dmm|beauty|gloryquest|supjav|jable|xvideos|pornhub|porn|wnacg|av)\b/i); var csp_list_regex = new RegExp(/\b(twitter|xvideos)\b/i); var echo_ell_length = 21; // 总共导航类目数量 var echo_ell_overlay_length = 1; // 带有滚动条的的导航类目数量 // 判断是否需要在当前页面插入导航按钮 let str_ua = navigator.userAgent.toLowerCase(); let regexp = /(.*)(iphone\sos\s)(\d{2})(.*)/; let ios_version = str_ua.replace(regexp, '$3'); var csp = ['twitter', 'xvideos']; var number_x = 0; if (/\b(google|bing)\b/i.test(window.location.href.toLowerCase())) { // 谷歌和必应均不插入导航按钮 } else if (csp_list_regex.test(window.location.href.toLowerCase())) { // 如果是带有CSP的网站则带上参数 csp adblock4limbo(x4Home_button_width(), 'csp'); _onclick_button(); } else { adblock4limbo(x4Home_button_width(), 'nocsp'); // 反之则不带 _onclick_button(); } /* 如不想显示 chat 聊天按钮 可使用双斜杠 // 注释上述函数调用代码; 举例如下: // adblock4limbo(); // hidden_adblock4limbo(); */ /* Chat and navigation End */ // 初始化导航内容 function navigation_body_pre() { let navigation = document.createElement('div') navigation.id = 'navigation'; navigation.setAttribute("class", "navigation_css"); let body = document.body; document.querySelector('html').insertBefore(navigation, body); let ele_innerHTML = '\ <div class="echo">\ \ <div class="closeX_W">\ <div class="ellCloseX"><button style="border-radius: 50%;opacity: 0.5;" id="xX" ></button></div>\ </div>\ \ \ <div class="div_global feedback">\ <div class="title_global">反馈/建议//</div>\ <ul class="ul_global">\ <li class="li_global"><button style="background:#688e4e !important; box-shadow:inset 0px 0px 15px 3px #16191f00;" class="a_global red" id="webChat">现在聊聊</button></li>\ <li class="li_global"><button style="background:#171212 !important; box-shadow:inset 0px 0px 15px 3px #16191f00;" class="a_global red" id="hidedaohang">隐藏导航</button></li>\ <li class="li_global"><a href="https://t.me/Adblock4limbo/21" target="_blank" class="a_global red" id="FAQ">常见FAQ</a></li>\ <li class="li_global"><button style="background:#df8a10 !important; box-shadow:inset 0px 0px 15px 3px #16191f00;" class="a_global" onclick="testx()" id="TESTX">TESTX</button></li>\ <li class="li_global"><button style="background:#df8a10 !important; box-shadow:inset 0px 0px 15px 3px #16191f00;"class="a_global" onclick="testy()" id="TESTY">TESTY</button></li>\ <li class="li_global"><a class="a_global" id="issue" href="https://github.com/limbopro/Adblock4limbo/issues/new/choose" \ target="_blank">提交issue</a></li>\ <li class="li_global"><a class="a_global" id="issue" href="https://github.com/limbopro/Adblock4limbo/blob/main/Adguard/Adblock4limbo.function.js" \ target="_blank">查看源码</a></li>\ <li class="li_global"><a class="a_global" id="admin" href="https://t.me/limboprobot" \ target="_blank">电报联系</a></li>\ <li class="li_global"><a class="a_global" id="tgGroup" href="https://t.me/Adblock4limbo/21" \ target="_blank">电报群组</a></li>\ <div class="fbt">新网站收录、当前网页广告问题反馈,其他建议或意见,请通过<span style="color:black;font-weight:bolder;">以上方式</span>告知我们(告知前可先看一下<a class="a_global title_" href="https://t.me/Adblock4limbo/21"> 常见FAQ </a>)...P.S. 该 Feature 持续增加/完善中,欢迎大家为之添砖加瓦!</div>\ </ul>\ </div>\ \ \ <div class="div_global gkd">\ <div class="title_global">关注博主//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global" id="Github" href="https://github.com/limbopro" \ target="_blank">Github</a></li>\ <li class="li_global"><a class="a_global" id="GreasyFork" href="https://sleazyfork.org/zh-CN/users/893587-limbopro" \ target="_blank">GreasyFork</a></li>\ <li class="li_global"><a class="a_global special" id="limboprossr" href="https://t.me/limboprossr" \ target="_blank">博客频道</a></li>\ <li class="li_global"><a class="a_global special" id="SecretGarden" href="https://t.me/+dQ-tZYqhSDEwNTk1" \ target="_blank">春潮频道</a></li>\ <li class="li_global"><a class="a_global better" id="limboprossr" href="https://twitter.com/limboprossr" \ target="_blank">Twitter</a></li>\ <li class="li_global"><a class="a_global" id="YouTube" href="https://m.youtube.com/@limboprossr/featured" \ target="_blank">YouTube</a></li>\ </ul>\ </div>\ \ \ <div class="div_global magicbox">\ <div class="title_global">工具箱//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global" id="yhlxj" href="https://limbopro.com/archives/25524.html" \ target="_blank">流媒体合租</a></li>\ <li class="li_global"><a style="background:#5a4771;box-shadow:inset 0px 0px 15px 3px #16191f00;" class="a_global" id="Adblock4limbo" href="https://limbopro.com/archives/12904.html" \ target="_blank">广告拦截大全</a></li>\ <li class="li_global"><a class="a_global" id="software_skills" href="https://limbopro.com/category/software-skills/" \ target="_blank">软件百科</a></li>\ <li class="li_global"><a style="background:#5a4771;box-shadow:inset 0px 0px 15px 3px #16191f00;" class="a_global" id="index" href="https://limbopro.com/" \ target="_blank">毒奶博客</a></li>\ <li class="li_global"><a class="a_global" id="jichangtuijian" href="https://limbopro.com/865.html" \ target="_blank">机场推荐</a></li>\ <li class="li_global"><a class="a_global red " style="background:#c53f3f; box-shadow:inset 0px 0px 15px 3px #16191f00;" id="lsj">毒奶搜索</a></li>\ </ul>\ </div>\ \ \ <div class="div_global speedtest">\ <div class="title_global">测速工具//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global" id="common" id="CloudflareSpeedtest" href="https://speed.cloudflare.com/"\ target="_blank">Cloudflare</a></li>\ <li class="li_global"><a class="a_global" id="Speedtest" href="https://www.speedtest.net/zh-Hans"\ target="_blank">Speedtest</a></li>\ \ </ul>\ </div>\ \ \ <div class="div_global ipcheck">\ <div class="title_global">网络连通检测//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global special" id="Sukka" href="https://ip.skk.moe/"\ target="_blank">ip地址查询</a></li>\ <li class="li_global"><a class="a_global" id="checkgfw" href="https://www.checkgfw.com/"\ target="_blank">域名被墙检测</a></li>\ \ </ul>\ </div>\ \ \ <div class="div_global front">\ <div class="title_global">前端入门//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global" id="wangdoc" href="https://wangdoc.com/" \ target="_blank">网道</a></li>\ <li class="li_global"><a class="a_global" id="Web_mdn" href="https://developer.mozilla.org/zh-CN/docs/Web" \ target="_blank">Web 开发技术</a></li>\ <li class="li_global"><a class="a_global special" id="JavaScript" href="https://zh.javascript.info/" \ target="_blank">现代 JavaScript 教程</a></li>\ \ </ul>\ </div>\ \ \ <div class="div_global boysshouldread">\ <div class="title_global">男孩子读物//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global better" id="regex" href="https://limbopro.com/archives/Regular_Expressions.html" \ target="_blank">正则表达式</a></li>\ <li class="li_global"><a class="a_global special" id="Linux-Shell" href="https://t.me/limboprossr/3197" \ target="__blank">快乐的命令行</a></li>\ \ </ul>\ </div>\ \ \ <div class="div_global onlinemovies">\ <div class="title_global">在线影视//</div>\ <ul class="ul_global">\ <li class="li_global"><a class="a_global" id="nbys" href="https://www.nivod4.tv/"\ target="_blank">泥巴影视</a></li>\ <li class="li_global"><a class="a_global better" id="common" href="https://ddys.pro/"\ target="_blank">低端影视</a></li>\ <li class="li_global"><a class="a_global special" id="common" href="https://xiaobaotv.net/"\ target="_blank">小宝影视</a></li>\ <li class="li_global"><a class="a_global" id="xbys" href="https://gimy.ai/"\ target="_blank">剧迷网</a></li>\ <li class="li_global"><a class="a_global" id="duboku" href="https://www.duboku.tv/"\ target="_blank">独播库</a></li>\ <li class="li_global"><a class="a_global" id="ttsp" href="https://www.ttsp.tv/"\ target="_blank">天天视频</a></li>\ <li class="li_global"><a class="a_global" id="555dy" href="https://555dyx3.com/"\ target="_blank">555电影网</a></li>\ <li class="li_global"><a class="a_global" id="libvio" href="https://libvio.top/"\ target="_blank">libvio梨</a></li>\ </ul>\ </div>\ \ <div class="_footer" style="color:black!important;">当前网页已在<a href="https://github.com/limbopro/Adblock4limbo/blob/main/Adblock4limbo.weblist" target="_blank" >去广告计划</a>范围,如在此页面发现广告请及时反馈。<div>\ \ </div>\ \ ' let navigation_parents = document.getElementById('navigation'); navigation_parents.innerHTML = ele_innerHTML; } var file = { javlibrary: "td.advsearch {display:none}#rightcolumn{right:90px;width:auto;} .videothumblist .videos {min-width:auto} table.about td {width:auto!important} table.about td.desc {width:auto !important;min-width:0px!important} .titlebox {width:auto !important}.videothumblist.videos {width:auto !important} #leftmenu{max-width:90px;} div.videothumblist{overflow:scroll !important; overflow-x:hidden !important}iframe{display:none} table.about td {min-width:0px;} body.main{min-width:0px !important}\ \ ", global_css: '\ img.nsfw {position:fixed;width:100%;top:0%;} #nsfw_echo span.nsfw {position:fixed;top:60%;} #nsfw_echo {color:white;width:100%;height:100%} #nsfw { opacity:0.4; filter:blur(0.5px);filter: grayscale(1);z-index:114154;background:black;position:fixed;width:100%;height:100%;} .new_div_search{padding:20px;position:fixed;bottom:0%;} .close_search_button:hover {background-color:red;opacity:1 !important;} .close_search_button {transition-property:opacity;transition-duration:666ms;right:2%;bottom:13%;position:fixed;width:108px;height:108px;background-image:url(https://limbopro.com/Adblock4limbo_google_close.png);background-size:100%;background-repeat:no-repeat;border-radius:50%;opacity:0.5;} .div_global.feedback{background:transparent;} .a_global.title_{background:blue !important;font-size:8px!important} a.a_global.better{background:#2e64bb !important;box-shadow:inset 0px 0px 15px 3px #10336d;} .boom {opacity:0.5;} a.a_global.red{background:#df0f0f !important;transition-property:opacity;transition-duration:2s;box-shadow:inset 0px 0px 15px 3px #E55B5B;} a.a_global.special{background:#3764ac !important;transition-property:opacity;transition-duration:2s;},a .a_global#CloudflareSpeedtest{} a.a_global#jichangtuijian{background:#3d3843; opacity:0.8;box-shadow:inset 0px 0px 15px 3px #000000}.carousel-inner{z-index:0!important} a.a_global#common {background:#3764ac}.a_global.xOnline {background:black;color:#f09636!important;box-shadow:inset 0px 0px 15px 3px black} .cms_opacity {pointer-events:none !important;opacity:0} .cms {pointer-events:auto} div.crisp-client {pointer-events:none; z-index:-114154; opacity:0;} .active { z-index:114154 !important; pointer-events:auto !important; opacity:1 !important; } div.closeX_Z{position:relative;text-align:right;z-index:1} div.closeX_W{position:relative;text-align: right;right:0px;top:0px;z-index:1} .scroll{position:absolute;width:110px;font-size:smaller;font-weight:lighter;padding-top:6px;color:#00000070;}button #x4Home{height:100px;background:red;opacity:1 !important;}.a_global.comics{background:#2a2146;box-shadow:inset 0px 0px 15px 3px #2a2146}.a_global.porn{background:#2a2146;box-shadow:inset 0px 0px 15px 3px #2a2146} div._footer a{color:#2c447e;font-weight:bolder;} div ._footer{position:absolute;text-align:left;margin-bottom:-30px;background:transparent;z-index:-1 !important;bottom:-41px;padding-bottom:20px;font-size:small;font-weight:lighter;} div#navigation.navigation_css{overscroll-behavior:none;top:0px;transition-property:opacity;transition-duration:999ms;margin:0px !important} div#navigation.navigation_css_0{transition-duration:0ms !important;margin:0px !important} div > button#xX{background-image:url("https://limbopro.com/Adblock4limbo_close.svg");transition-property:opacity;transition-duration:666ms;background-color:#542c3e;color:#ffffff;opacity:0.5 !important;border:0px;margin:0px;width:108px;height:108px;border-radius:0%;}div > button#xX:hover{background-color:red;opacity:1 !important;}div > button:active{background-color:red;}div .ellCloseX{z-index:-1;margin:0px;position:initial;};span#nspan{margin:0px;font-weight:bolder !important;color:black !important;}div > div .fbt{color:#6064a2 !important;margin:0px;font-size:small;width:112px;padding-top:5px;padding-left:4px;padding-right:4px;}.echo{width:auto;font-size:15px;text-align:inherit;position:absolute;}ul > li > button{overflow:visible;width:106px !important;line-height:15px !important;} ul.ul_global > li > a{font-weight:lighter;overflow:visible;width:106px !important;font-size:15px !important;line-height:15px !important;}.li_global{min-height:31px;font-size:medium;list-style:none;width:112px;}.ul_global{padding:0px;font-size:15px !important;height:248px;margin:0px;overflow:auto;width:auto;} .title_global{font-size:initial;margin-bottom:5px;font-weight:lighter;color:black !important;padding-left:4px;padding-bottom:2px;} .div_global{text-align:center;float:left;padding-top:31px;margin-bottom:29px;padding-left:0px;}.ellClose{text-align:center;float:left;padding-top:15px;margin-bottom:15px;padding-left:0px;}#navigation{overflow-y:overlay;overflow-x:hidden;background-image:url("https://raw.githubusercontent.com/limbopro/Adblock4limbo/main/Adguard/Adblock4limbo_bgp.jpg");background-size:100% !important;background-repeat:round;margin:auto;width:200px;height:200px;z-index:-114154;opacity:0;background-color:transparent;position:fixed;top:50%;}.a_global{text-align:center;white-space:break-spaces;color:white !important;box-shadow:inset 0px 0px 15px 3px #23395e;background:linear-gradient(to bottom,#2e466e 5%,#415989 100% );background-color:#2e466e !important;border-radius:0px;margin:1px;border:1px solid #1f2f47 !important;display:inline-block;cursor:pointer;color:#ffffff;font-family:Arial;font-size:100% !important;padding-bottom:6px;padding-top:6px;text-decoration:none;text-shadow:0px 1px 0px #263666;}.a_global:hover{background:linear-gradient(to bottom,#415989 5%,#2e466e 100%);background-color:#415989;}.a_global:active{position:relative;top:1px;}\ ' } // 优先追加style元素 以内联样式的方式 function css_add(css, here_write_css_name_you_want) { // css style 创建 let body = document.body; var css_name_x = document.createElement('style'); css_name_x.id = here_write_css_name_you_want; css_name_x.innerText = css; document.querySelector('html').insertBefore(css_name_x, body); } // 优先追加style元素 以 link 的方式 function css_url_add(css_url, here_write_css_name_you_want) { // css file 创建 let head = document.querySelectorAll('head')[0]; var css_name_y = document.createElement('link'); css_name_y.id = here_write_css_name_you_want; css_name_y.href = css_url; css_name_y.type = 'text/css'; css_name_y.rel = 'stylesheet'; head.appendChild(css_name_y); } css_add(file.global_css, 'navigation_style'); // 在body后面插入 css //css_add(file.javlibrary, 'mayi'); // 在body后面插入 css function insertBefore_that_element_xx(x) { let parentElement = document.querySelector('div#rightcolumn') let insertBefore_that_element_X = document.querySelector('div#video_favorite_edit'); let son = document.querySelectorAll("[style*='vertical-align: top']")[1] parentElement.insertBefore(son, insertBefore_that_element_X); document.querySelectorAll(x).forEach((x) => { x.style.width = '140px' }) if (window.innerWidth < 430) { } } // 新建一个独立的 div 元素 用作sample function div_sample(echo_selector, insertBefore_that_element, switchX, child_css_change) { let target = document.querySelector(echo_selector); let div_global_x = document.createElement('div'); div_global_x.className = "div_global " + child_css_change; let div_title = document.createElement('div'); div_title.textContent = 'sample'; div_title.className = 'title_global'; // 全局 let ul_ul_global = document.createElement('ul'); ul_ul_global.className = 'ul_global'; let li_li_global = document.createElement('li'); li_li_global.className = 'li_global'; let a = document.createElement('a'); a.className = 'a_global'; a.href = 'https://limbopro.com/'; a.target = '_blank'; a.textContent = 'Sample'; a.id = 'sample'; li_li_global.appendChild(a); ul_ul_global.appendChild(li_li_global); div_global_x.appendChild(div_title); div_global_x.appendChild(ul_ul_global); if (switchX == 1) { let insertBefore_that_elementx = document.querySelector(insertBefore_that_element); target.insertBefore(div_global_x, insertBefore_that_elementx); // 插入到现有 body 前 } else { target.appendChild(div_global_x); } } // 新建一个独立的 li 元素 用作sample function li_sample(div_global_selector, insertBefore_that_element, switchX) { let target = document.querySelector(div_global_selector); let li_global_x = document.createElement('li'); li_global_x.className = "li_global"; let a = document.createElement('a') a.className = 'a_global'; a.id = 'sample'; a.href = 'https://limbopro.com/'; a.target = '_blank'; a.textContent = 'Sample'; li_global_x.appendChild(a); if (switchX == 1) { let thatli = target.querySelectorAll('li'); // document.querySelector('.div_global.speedtest').querySelectorAll('li') for (i = 0; i < thatli.length; i++) { if (thatli[i].querySelector(insertBefore_that_element)) { // document.querySelector('.div_global.speedtest').querySelectorAll('li').querySelector('#Speedtest') target.insertBefore(li_global_x, thatli[i]) } } } else { target.appendChild(li_global_x); } } // .div_global.DeverloperX // 可向上滑动判断 function scroll_switch() { //let scroll_check = setInterval(() => { var div_global = document.querySelectorAll('.div_global'); ////console.log("// scroll_switch() 查看子元素数量是否超出设定"); for (i = 0; i < div_global.length; i++) { if (div_global[i].querySelector('div.fbt')) { var fbt = div_global[i].querySelector('div.fbt').clientHeight } else { var fbt = 0 } var sum = 0; let li = div_global[i].querySelectorAll('li') //let li = document.querySelectorAll('.div_global')[20].querySelectorAll('li') for (x = 0; x < li.length; x++) { sum += li[x].clientHeight; } //console.log(sum) if (div_global[i].querySelectorAll('li').length * 31 + fbt > 8 * 31 || sum + fbt > 8 * 31) { // if (sum_scroll() + fbt > 8 * 31) { let scroll_innerHTML = document.createElement('div'); scroll_innerHTML.textContent = '*可向上滑动查看更多'; scroll_innerHTML.className = "scroll"; document.querySelectorAll("div.div_global")[i].appendChild(scroll_innerHTML); ////console.log("// scroll_switch() 正在执行插入 // 子元素较多"); ////clearInterval(scroll_check); } } //}, 1000) } //document.querySelectorAll('.div_global')[3].querySelectorAll("li").length * 31 function xXX() { let div_global = document.querySelectorAll('.div_global'); for (i = 0; i < div_global.length; i++) { let a_length = div_global[i].querySelectorAll("a").length; for (i = 0; i < a_length; i++) { div_global[i].querySelectorAll('a') } } var a_length = document.querySelectorAll('.div_global')[3].querySelectorAll("li").length; for (i = 0; i < a_length; i++) { //console.log(document.querySelectorAll('.div_global')[3].querySelectorAll("a")[i].clientHeight); if (document.querySelectorAll('.div_global')[3].querySelectorAll("a")[i].clientHeight > 27) { let scroll_innerHTML = document.createElement('div'); scroll_innerHTML.textContent = '*可向上滑动查看更多'; scroll_innerHTML.className = "scroll"; } } } var selector = { // css 定义选择器 body_css_real: ["div.navigation_css", 'common'], body_css: ["div#navigation.navigation_css", 'common'], footer: ["div._footer", 'common'], } function all(opacity, zIndex, switchX, pointevents = '') { //console.log("// body_build() 输入为 true,开始创建导航..." + " 透明度为 " + opacity + " 层级数目为 " + zIndex) if (!document.querySelector('div#navigation[style]')) { // 如果导航不存在则生成 navigation_body_pre(); // 生成导航 let parentElement = document.getElementById('navigation'); parentElement.style.zIndex = zIndex; parentElement.style.opacity = opacity; parentElement.style.pointerEvents = pointevents; body_align("navigation");// 初始化导航大小 body_bgp_switch(); // 设置背景图片 echo_align(); // 导航居中 //new_align(); echo_check_switch(switchX); // 监控导航大小变化 //boom(); } else { //boom(); let parentElement = document.getElementById('navigation'); parentElement.style.zIndex = zIndex + 1; parentElement.style.opacity = opacity; parentElement.style.pointerEvents = pointevents; body_align("navigation");// 初始化导航大小 body_bgp_switch(); // 设置背景图片 echo_align(); // 导航居中 //new_align(); echo_check_switch(switchX); // 监控导航大小变化 } if (opacity == 0) { crisp_window_remove('0'); } } // 按钮闪烁提示 function opacity_switch() { if (document.querySelector('#windowClose')) { document.querySelector('#windowClose').style.opacity = '0.5' setTimeout(() => { document.querySelector('#windowClose').style.opacity = '1.5' }, 1500) } } function boom() { var true_ = 10; let xman = setInterval(() => { true_--; opacity_switch(); console.log(true_) if (true_ < 1) { clearInterval(xman) } }, 3000) } //boom(); /* Start 判断是否显示导航 可不删 */ function body_build(x) { // 判断导航显示与否 if (x == "true") { ////console.log("// body_build() 输入为 true,开始创建导航...") all(1, 114154, 1, 'auto') } else if (x == "false") { all(0, -114154, 1, 'none') setTimeout(() => { x4Home_button("1"); // 显示导航按钮 }, 1000) //console.log("// body_build() 导航已隐藏,右下角按钮浮现..."); } } // 设置导航初始大小 初始DaoHang 大小 function body_align(parentElement) { // 先居中 parentElement 全屏 var parentElement = document.getElementById(parentElement); parentElement.style.height = window.innerHeight * 1 + "px"; parentElement.style.width = window.innerWidth * 1 + "px" //} } // 替换背景图片 function body_bgp_switch() { if (!(csp_list_regex.test(window.location.href.toLowerCase()))) { let url_w = "https://raw.githubusercontent.com/limbopro/Adblock4limbo/main/Adguard/Adblock4limbo_bgp_w.jpg"; let url_h = "https://raw.githubusercontent.com/limbopro/Adblock4limbo/main/Adguard/Adblock4limbo_bgp.jpg"; if (window.innerWidth * 0.65 >= window.innerHeight) { document.querySelector("div#navigation").style.backgroundImage = `url(${url_w})`; } else { document.querySelector("div#navigation").style.backgroundImage = `url(${url_h})`; } } else { document.querySelector("div#navigation").style.backgroundColor = '#dfdfdf'; document.querySelector("div > button#xX").textContent = 'X'; document.querySelector("div > button#xX").style = 'font-size:-webkit-xxx-large;border-radius:50%;'; } } // echo 居中 function echo_align() { if (window.innerHeight > document.querySelector("div.echo").scrollHeight) { document.querySelector(selector.body_css_real).style.paddingTop = (window.innerHeight - document.querySelector("div.echo").scrollHeight) / 2 - 108 + "px"; // 108 为 closeX 的尺寸 } //var echo_ell_length = document.querySelectorAll('div.div_global').length; // 总共导航类目数量 if (window.innerWidth > (112 * echo_ell_length)) { // 当屏幕宽度大于 452px //console.log("正在检查是否属于大尺寸...") body_align("navigation"); document.querySelector(selector.body_css_real).style.paddingLeft = (window.innerWidth - (112 * echo_ell_length + 8 * echo_ell_overlay_length)) / 2 + "px"; document.querySelector('div._footer').style.width = Math.floor((window.innerWidth / 112)) * 112 + "px"; // footer 宽度 document.querySelector('div.ellCloseX').style.zIndex = "-1"; // 确保关闭按钮可见可点击 if (document.querySelector('div.closeX_Z')) { document.querySelector('div.closeX_Z').className = "closeX_W"; } //document.querySelector('div.ellCloseX').style.position = "initial"; // 确保关闭按钮可见可点击 } else { new_align(); document.querySelector('div._footer').style.width = Math.floor((window.innerWidth / 112)) * 112 + "px"; // footer 宽度 /* console.log("// echo_align() 正在检查是否属于小尺寸..."); document.querySelector(selector.footer).style.width = Math.floor((window.innerWidth / 112)) * 112 + "px"; // footer 宽度 body_align("navigation"); document.querySelector(selector.body_css_real).style.paddingLeft = ((window.innerWidth % 112 - 8 * echo_ell_overlay_length) / 2) + "px"; // 当 ellCloseX position 为 initial 时 if (document.querySelector('div.closeX_W')) { document.querySelector('div.closeX_W').className = ("closeX_Z"); }*/ } } function _blank() { const url_now = window.location.href.toLowerCase(); if (/\b(limbopro)\b/i.test(url_now)) { document.querySelectorAll('div.echo a').forEach((x) => { x.target = "_blank"; // 将当前页面链接 target 设置为 _blank //console.log("// _blank() 将当前页面链接 target 设置为 _blank..."); }) } else { //console.log("// _blank() 判断当前非博客页面,它是" + url_now); } } // 超棒自动化 // 在尾部追加子元素 var parentNodeX = [['Cloudflare', 'https://speed.cloudflare.com/', '_blank', '0', 'better'], ['SpeedTest', 'https://www.speedtest.net/', '_blank', '0', 'common'], ['溜池ゴロー', 'https://tameikegoro.jp/', '_blank', 'porn', 'better'], ['s1s1s1 S1/エスワンー', 'https://s1s1s1.com/', '_blank', 'porn', 'better'], ['VENUSーS級熟女メーカ|S級熟女メーカー', 'https://venus-av.com/', '_blank', 'porn', 'special'], ['Glory Questー「禁断介護」や逆ショタ元祖', 'https://www.gloryquest.tv/', '_blank', 'porn', 'special'], ['Madonna(マドンナ)', 'https://www.madonna-av.com/top/', '_blank', 'porn', 'common'], ['SOD(ソフトオンデマンド)', 'https://www.sod.co.jp/', '_blank', 'poxrn', 'common'], ['ATTACKERS(アタッカーズ)', 'https://www.attackers.net/top/', '_blank', 'porn', 'common'], ['PRESTIGE(プレステージ)', 'https://www.prestige-av.com/', '_blank', 'porn', 'common'], ['PREMIUM(プレミアム', 'https://www.premium-beauty.com/top/', '_blank', 'porn', 'special'], ['MOODYZー', 'https://www.moodyz.com/top/', '_blank', 'porn', 'common'], ['IDEAPOCKET (アイデアポケット)', 'https://www.ideapocket.com/top/', '_blank', 'porn', 'porn', 'common'], ['OPPAI(おっぱい)', 'https://www.oppai-av.com/', '_blank', 'porn', 'common'], ['【kawaii*】公式サイト', 'https://www.kawaiikawaii.jp/top/', '_blank', 'porn', 'common'], ['肉感あふれる女優', 'https://www.fitch-av.com/top/', '_blank', 'porn', 'common'], ['タカラ映像 TAKARA', 'https://www.takara-tv.jp/', '_blank', 'porn', 'common'], ['ながえSTYLE(NTR)', 'https://www.nagae-style.com/', '_blank', 'porn', 'common'], ['トップページ - AVメーカー【ダスッ!】公式サイト', 'https://www.dasdas.jp/top/', '_blank', 'porn', 'common'], ['レズ・素人ナンパを中心', 'https://deeps.net/', '_blank', 'porn', 'common'], ['変態紳士倶楽部】公式サイト', 'https://www.to-satsu.com/top/', '_blank', 'porn', 'common'], ['wanzfactory(ワンズファクトリー)', 'https://www.wanz-factory.com/top/', '_blank', 'porn', 'common'], ['【E-BODY(イーボディ)】公式サイト', 'https://www.av-e-body.com/top/', '_blank', 'porn', 'common'], ['MGS動画は', 'https://www.mgstage.com/', '_blank', 'porn', 'common'], ['ABC/妄想族(1302本)', 'https://www.mousouzoku-av.com/top/', '_blank', 'porn', 'common'], ['JET「卍GROUP」のトップページです', 'https://manji-group.com/top/', '_blank', 'porn', 'common'], ['!! ROCKET', 'https://www.rocket-inc.net/top.php', '_blank', 'porn', 'common'], ['FANZA通販-アダルト通販ショッピング', 'https://www.dmm.co.jp/mono/', '_blank', 'porn', 'common'], ['【無垢】公式サイトトーップページ | AVメーカ', 'https://www.muku.tv/top/', '_blank', 'porn', 'common'], ['Github', "https://github.com/", "_blank", "Tech", 'common'], ['Wikipedia', "https://zh.wikipedia.org/wiki/Wikipedia:%E9%A6%96%E9%A1%B5", "_blank", "Tech", 'common'], ["Reddit", "https://www.reddit.com/", "_blank", "Social", 'special'], ["Quora", "https://www.quora.com/", "_blank", "Social", 'common'], ["Twitter", "https://twitter.com/", "_blank", "Social", 'special'], ["Instagram", "https://www.instagram.com/", "_blank", "Social", 'common'], ["Tiktok", "https://www.tiktok.com/", "_blank", "Social", 'common'], ["Youtube", "https://m.youtube.com/", "_blank", "Media", 'special'], ["Netflix", "https://www.netflix.com/browse", "_blank", "Media", 'special'], ["HBO", "https://www.hbo.com/", "_blank", "Media", 'common'], ["Disney+", "https://www.disneyplus.com/en-hk", "_blank", "Media", 'common'], ["Amazon Prime Video", "https://www.primevideo.com/", "_blank", "Media", 'common'], ["Pexels", "https://www.pexels.com/", "_blank", "IMages", 'common'], ["Pixbay", "https://pixabay.com/", "_blank", "IMages", 'common'], ['Github', 'https://github.com/', '_blank', 'Developer', 'special'], ['v2ex', 'https://www.v2ex.com/', '_blank', 'Developer'], ['思否', 'https://segmentfault.com/', '_blank', 'Developer', 'special'], ['掘金', 'https://juejin.cn/', '_blank', 'Developer', 'special'], ['MDN', 'https://developer.mozilla.org/zh-CN/', '_blank', 'Developer', 'common'], ['w3schools', 'https://w3schools.cn/', '_blank', 'Developer', 'common'], ['Stack Overflow', 'https://stackoverflow.com/', '_blank', 'Developer', 'common'], ['Jable', 'https://jable.tv/', '_blank', 'xOnline', 'special'], ['Missav', 'https://missav.com/cn/', '_blank', 'xOnline', 'special'], ['Supjav', 'https://supjav.com/zh/', '_blank', 'xOnline', 'special'], ['JavLibrary', 'https://www.javlibrary.com/cn/', '_blank', 'xOnline', 'better'], ['Pornhub', 'https://cn.pornhub.com/', '_blank', 'xOnline', 'common'], ['Xvideos', 'https://www.xvideos.com/', '_blank', 'xOnline', 'common'], ['Javday', 'https://javday.tv/', '_blank', 'xOnline', 'common'], ['Njav', 'https://njav.tv/zh/', '_blank', 'xOnline', 'common'], ['hanime1', 'https://hanime1.me/comics', '_blank', 'xOnline', 'common'], ['认知偏差手册', 'https://s75w5y7vut.feishu.cn/docs/doccn3BatnScBJe7wD7K3S5poFf#RirzLG', '_blank', 'knowledge', 'common'], ['JavaScript高级程序设计', 'https://t.me/limboprossr/2812', '_blank', 'front-end', 'common'], ['w3school 在线教程', 'https://www.w3school.com.cn/index.html', '_blank', 'front-end', 'common'], ['IP.SB', 'https://ip.sb/', '_blank', 'ipcheck', 'common'], ['BGP Toolkit ', 'https://bgp.he.net/', '_blank', 'ipcheck', 'common'], ['Baidu', 'https://www.baidu.com/', '_blank', 'ipcheck', 'common'], ['Google', 'https://www.google.com/', '_blank', 'search', 'special'], ['Bing', 'https://www.bing.com/', '_blank', 'search', 'common'], ['DuckDuckGo', 'https://duckduckgo.com/', '_blank', 'search', 'common'], ['Yahoo!)', 'https://hk.yahoo.com/?p=us', '_blank', 'search', 'common'], ['搜狗搜索', 'https://www.sogou.com/', '_blank', 'search', 'common'], ['Baidu', 'https://www.baidu.com/', '_blank', 'search', 'common'], ['ChatGPT', 'https://chat.openai.com/auth/login', '_blank', 'AI', 'better'], ['Google Bard', 'https://bard.google.com/?hl=en', '_blank', 'AI', 'special'], ['Claude.ai', 'https://claude.ai/', '_blank', 'AI', 'special'], ['Google AI', 'https://labs.google.com/search/experiments', '_blank', 'AI', 'common'], ['Bing AI', 'https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx', '_blank', 'AI', 'better'], ["在线正则表达式测试", 'https://tool.oschina.net/regex/', '_blanl', 'Tools', 'special'], ['禁漫天堂', 'https://18comic.vip/', '_blank', 'comic18', 'special'], ['绅士漫画', 'https://www.wnacg.com/', '_blank', 'comic18', 'special'], ['博客优化', 'https://limbopro.com/category/builder/', '_blank', 'seoandmore', 'special'], ['博客防御', 'https://limbopro.com/tag/Cloudflare/', '_blank', 'seoandmore', 'common'], ['苦瓜书盘', 'https://kgbook.com/', '_blank', 'bookreadanddownload', 'common'], ['Library Genesis', 'https://www.libgen.is/', '_blank', 'bookreadanddownload', 'special'], ['M3U8下载?(Porn/Jable...本地化操作,无需下载额外乱七八糟的软件...)', 'https://limbopro.com/archives/M3U8-Downloader.html', '_blank', 'dload', 'special'], ['Twitter 视频下载(PC网页版)', 'https://ssstwitter.com/result_various', '_blank', 'dload'], ['Instagram 视频下载(电报🤖)', 'https://t.me/instasavegrambot', '_blank', 'dload', 'special'], ['Instagram 视频下载(捷径🤖)', 'https://limbopro.com/archives/1053.html', '_blank', 'dload', 'special'], ['Instagram 视频下载(PC网页版)', 'https://sssinstagram.com/', '_blank', 'dload'], ['Youtube 视频下载(PC网页版)', 'https://ssyoutube.com/', '_blank', 'dload'], ['Pornhub 视频下载(PC网页版)', 'https://www.saveporn.net/', '_blank', 'dload'], ['More...', 'https://limbopro.com/category/downloader/', '_blank', 'dload'], ['Stable Diffusion入门','https://limbopro.com/archives/install_and_quickstart_Stable_Diffusion.html','_blank','aigc','special'], ['Civitai','https://civitai.com/','_blank','aigc','better'] ]; var click_count = 0; document.addEventListener("keydown", function (event) { if (event.code === "Escape") { click_count = ++click_count; console.log(click_count + "次ESC点击次数"); // 执行你想要的操作 // 监听键盘事件 ESC if (!(document.querySelector('div#nsfw') === null) && !(document.querySelector('div#nsfw').style === null) && !(document.querySelector('div#nsfw').getAttribute('style') === null) && (document.querySelector('div#nsfw').getAttribute('style').search('-114') == -1) && click_count == 1) { znsh_unlock(); } else if ((document.querySelector('div[data-chat-status="ongoing"]') && (document.querySelector('div[data-chat-status="ongoing"]').getAttribute('data-visible') == 'true')) || document.querySelector('div[data-chat-status="initial"]') && (document.querySelector('div[data-chat-status="initial"]').getAttribute('data-visible') == 'true') && click_count == 1) { crisp_active('1'); } else if (typeof body_build == 'function' && document.querySelector("#navigation").style.zIndex > 0 && click_count == 1) { body_build('false'); } else if (typeof close_googlesearch_iframe == 'function' && document.querySelector("#searchbyGoogle") && (document.querySelector("#searchbyGoogle")).style.zIndex > 0 && click_count == 1) { close_googlesearch_iframe(); } else if ((document.querySelector("#x4Home").style.height == "0%") && click_count == 1) { setTimeout(() => { x4Home_button('1') // 按钮出现 }, 1000) } else if (typeof body_build == 'function' && document.querySelector("#navigation").style.zIndex < 0 && click_count >= 2) { body_build('true') // 如果按钮出现,且其他如搜索不存在则可唤出导航页面 } } if (event.code === 'KeyG') { if (document.getElementById('navigation').style.zIndex > 0 && (document.querySelector('.crisp-client.active') === null)) { open_googlesearch_iframe(); // 如果当前页面为导航详情页 则可按 G 键快速唤出搜索框 } } if (event.code === 'KeyC') { if (document.getElementById('navigation').style.zIndex > 0 && (document.querySelector('.crisp-client.active') === null)) { crisp_active('1') // 如果当前页面为导航详情页 则可按 C 键快速唤出聊天框 } } if (event.code === "Space") { // 空格键 if (!(document.querySelector('div#navigation').style.opacity == 0) && (document.querySelector('.crisp-client.active') === null)) { open_googlesearch_iframe(); // 如果当前页面为导航详情页 则可按 G 键快速唤出搜索框 } // 处理空格键按下后要执行的代码 // body_build('true'); } setTimeout(() => { click_count = 0; }, 500); }); // 监听 visibility change 事件 用户离开当前页面事件 function visibility() { document.addEventListener('visibilitychange', function () { var visible = document.visibilityState; if (visible !== 'visible') { console.log(visible) document.body.style.filter = 'blur(10px)' } else { setTimeout(() => { console.log(visible) document.body.style.filter = 'blur(0px)' }, 500) } }) }; // 移动 echo div._footer 位置 function _footer_move() { let target = document.querySelector('.echo') let child = document.querySelector('div._footer') target.appendChild(child) } function new_align() { if (document.querySelectorAll('div.div_global').length > 15) { var category = Math.floor((window.innerWidth / 112)); function sum(x) { console.log("每排共计" + category + "个类目...") let sum = 0; for (i = 0; i < x; i++) { sum += document.querySelectorAll('div.div_global')[i].clientWidth; } return sum; } sum(category) if (sum(category) > window.innerWidth) { var category = Math.floor((window.innerWidth / 112)) - 1; sum(category); console.log("占据" + sum(category) + "px...") document.querySelector(selector.body_css_real).style.paddingLeft = (window.innerWidth - sum(category)) / 2 + "px" console.log("判断失误...") console.log("本次偏移量为" + (window.innerWidth - sum(category)) / 2 + "px") } else { console.log("判断正常...") } console.log("占据" + sum(category) + "px...") document.querySelector(selector.body_css_real).style.paddingLeft = (window.innerWidth - sum(category)) / 2 + "px" console.log("本次偏移量为" + (window.innerWidth - sum(category)) / 2 + "px") } } //visibility() // 监听键盘输入 /* document.addEventListener("keydown", logKey); function logKey(e) { console.log(`${e.code}`) if (`${e.code}` == 'KeyP') { var code = 1; //return 3; } } */ function parentElement_add() { all(0, -114154, 1, 'none'); body_build('false'); var parentElementX = setInterval(() => { // //console.log("\\ parentElement_add() 类目自动化生成检测... ") if (document.querySelector('div#navigation[style]')) { const url_now = window.location.href.toLowerCase(); //if (/\b\b/i.test(window.location.href.toLowerCase())) { if (nsfw_list_regex.test(window.location.href.toLowerCase())) { parent_push('.echo', 'xOnline', 4, '午夜惊魂//', 'xOnline') parent_push('.echo', 'PornMaker', 4, '著名片商//', 'porn') parent_push('.echo', 'comic18', 4, '漫画//', 'comic18') parent_push('.echo', 'dload', 4, '下载工具//', 'dload') parent_push('.echo', 'Tools', 4, "多宝盒//", "Tools") parent_push('.echo', 'bookreadanddownload', '4', '电子书//', 'bookreadanddownload') parent_push('.echo', 'seoandmore', 4, "建站指北//", "seoandmore") parent_push(".echo", 'AI', 4, '智能AI//', 'AI') parent_push(".echo", 'aigc', 4, 'AIGC//', 'aigc') parent_push(".echo", 'Search', 4, '搜索引擎//', 'search') parent_push(".echo", 'DeverloperX', 4, '开发者社区//', 'Developer') parent_push(".echo", 'Images', 4, '免费商用图片', 'IMages') parent_push('.echo', 'Social', 4, '社交媒体//', 'Social') parent_push('.echo', 'Media', 4, '娱乐媒体//', 'Media') child_push('.div_global.front > ul', '', "", 'front-end', 0) child_push('.div_global.boysshouldread > ul', '', '', 'knowledge', 0) child_push('.div_global.ipcheck > ul', '', '', 'ipcheck', 1) scroll_switch(); if_a_click_then_close_daohang(); _footer_move(); // 最后再移动 div._footer //new_align(); // 居中 clearInterval(parentElementX); } else { parent_push('.echo', 'Tools', 4, "多宝盒//", "Tools") parent_push('.echo', 'bookreadanddownload', '4', '电子书//', 'bookreadanddownload') parent_push('.echo', 'seoandmore', 4, "建站指北//", "seoandmore") parent_push(".echo", 'DeverloperX', 4, '开发者社区//', 'Developer') parent_push('.echo', 'Social', 4, '社交媒体//', 'Social') parent_push('.echo', 'Media', 4, '娱乐媒体//', 'Media') parent_push(".echo", 'AI', 4, '智能AI//', 'AI') parent_push(".echo", 'aigc', 4, 'AIGC//', 'aigc') parent_push(".echo", 'Search', 4, '搜索引擎//', 'search') parent_push(".echo", 'Images', 4, '免费商用图片', 'IMages') parent_push('.echo', 'PornMaker', 4, '著名片商//', 'porn') parent_push('.echo', 'xOnline', 4, '午夜惊魂//', 'xOnline') parent_push('.echo', 'comic18', 4, '漫画//', 'comic18') parent_push('.echo', 'dload', 4, '下载工具//', 'dload') child_push('.div_global.front > ul', '', "", 'front-end', 0) child_push('.div_global.boysshouldread > ul', '', '', 'knowledge', 0) child_push('.div_global.ipcheck > ul', '', '', 'ipcheck', 1) //console.log("// parentElement_add() 生成检测..."); scroll_switch(); if_a_click_then_close_daohang(); _footer_move(); // 最后再移动 div._footer //new_align(); // 居中 clearInterval(parentElementX); } } }, 500) } parentElement_add(); // 宅男守护 function nsfw_content_hidden(x) { // nsfw 网站模糊 if (x == 'true') { // 新建背景模糊 nsfw if (!document.querySelector("#nsfw_echo")) { let nsfw_frame_blur = document.createElement('div'); nsfw_frame_blur.id = 'nsfw'; let parentElement = document.querySelector('#x4Div') ? document.querySelector('#x4Div') : ''; parentElement.appendChild(nsfw_frame_blur) if (window.innerWidth < window.innerHeight) { var innerHTML_echo = '<div id="nsfw_echo"><img class="nsfw" src="https://limbopro.com/Ad_swipe_mobile_1.png"></div>' } else { var innerHTML_echo = '<div id="nsfw_echo"><img class="nsfw" src="https://limbopro.com/Ad_swipe_pc_1.png"></div>' } nsfw_frame_blur.innerHTML = innerHTML_echo; } else { if (document.querySelector("#nsfw")) { document.querySelector("#nsfw").style.zIndex = '114154'; document.querySelector("#nsfw").style.opacity = 0.4; } } } } // 监听 visibility change 事件 用户离开当前页面事件 function visibility() { document.addEventListener('visibilitychange', function () { var visible = document.visibilityState; if (visible !== 'visible') { document.body.style.filter = 'blur(20px)'; nsfw_content_hidden('true'); // 开启模糊 } }) }; //visibility() // 取消模糊 监听 function visibility_switch() { if (document.querySelector("div#nsfw")) { document.querySelector("div#nsfw").addEventListener("click", znsh_unlock); /* let last_known_scroll_position = window.scrollY; setTimeout(() => { if (last_known_scroll_position !== window.scrollY) { znsh_unlock(); } }, 1000) */ } } function znsh_unlock() { if (document.querySelector("#nsfw")) { document.body.style.filter = 'blur(0px)'; document.querySelector("#nsfw").style.zIndex = '-114154'; document.querySelector("#nsfw").style.opacity = 0; setTimeout(() => { x4Home_button('1'); // 显示导航按钮 }, 1000) } } /* visibility() setInterval(() => { visibility_switch(); // }, 1500); */ function znsh() { //var url = document.location.href; //console.log(url) if (nsfw_list_regex.test(document.location.href)) { visibility() //console.log(url + " 网站匹配 znsh() ,开启成人守护模式...") setInterval(() => { visibility_switch(); // }, 1500); } } znsh(); // 设置 cookie 饼 function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toGMTString(); document.cookie = cname + "=" + cvalue + "; " + expires; } function getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i].trim(); if (c.indexOf(name) == 0) return c.substring(name.length, c.length); } return ""; } function hide_button_switch(x) { if (x == 1) { document.querySelector('button#x4Home').classList.add('cms_opacity'); var days = window.prompt("请输入你想要隐藏该按钮的天数?(请直接输入数字),该按钮将在你指定的时间后再次显示。你可通过清理浏览器 cookie 或 无痕模式打开的方式提前停止计时。本次设置仅针对当前网站域名生效。"); setCookie("button_switch", 'True', days); body_build('false'); x4Home_button('hidden'); } } // 隐藏按钮选项 1 一天 let button_switch = getCookie("button_switch"); if (button_switch == 'True') { document.querySelector('button#x4Home').classList.add('cms_opacity'); } else { document.querySelector('button#x4Home').classList.remove('cms_opacity'); } // 复制父元素下指定位置子元素 function parentElement_build(parentNode, i) { //console.log("// parentElement_build(() 正在复制" + parentNode + "下的父元素,并追加到" + parentNode + "后"); if (document.querySelectorAll(parentNode)[0]) { let parentElement = document.querySelectorAll(parentNode)[0]; // 抓住老番茄 let node = document.querySelectorAll(parentNode)[0].children[i]; // 取出 let clone = node.cloneNode(true); // 复制 parentElement.appendChild(clone); } } // 替换父元素的内容 function parentElement_inner(parentNode, Headline_css, Headreplace_str, child_css_change) { //console.log("// parentElement_inner() 正在替换" + parentNode + "下的最后一个元素的标题及相关属性"); document.querySelector(".div_global." + child_css_change).querySelector(Headline_css).textContent = Headreplace_str; } // parentElement_inner('.echo','.title','社交媒体//','Social') // 在父元素下追加元素 function parentElement_push(parentNode, category, child_css_change, insertBefore_that_element, switchX) { // part1 var arrayXP = parentNodeX; arrayXP.length var valid = 0; for (i = 0; i < arrayXP.length; i++) { if (arrayXP[i][3] == category) { var number = ++valid; ////console.log("// parentElement_push() 匹配到的内容为" + arrayXP[i][0]); } } //console.log("// parentElement_push() 匹配到符合" + category + "的数量为" + number); //console.log("// parentElement_push() .div_global." + child_css_change + " > ul"); // part 2 var real_length = document.querySelector(".div_global." + child_css_change + " > ul").querySelectorAll('li').length //console.log("// 被复制子元素个数为" + real_length + category + "类目下符合要求的元素个数为" + number) if (number > real_length) { var lenth_now = number - real_length; //console.log("// parentElement_push() 开始新建元素...") for (i = 0; i < lenth_now; i++) { li_sample(".div_global." + child_css_change + " > ul", insertBefore_that_element, switchX); //child_build(".div_global." + child_css_change + " > ul") } // Part 3 var bb = 0; for (i = 0; i < arrayXP.length; i++) { if (arrayXP[i][3] == category) { document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].textContent = arrayXP[i][0]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].href = arrayXP[i][1]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].target = arrayXP[i][2]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].id = arrayXP[i][3]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].classList.add(arrayXP[i][3]); document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].classList.add(arrayXP[i][4]); var bb = ++bb; // 元素新建成功,开始执行元素重写 ////console.log('// 元素新建成功,开始执行元素重写'); } } } else { // Part 4 var bb = 0; for (i = 0; i < arrayXP.length; i++) { //console.log("// 无需新建元素,开始执行元素重写...") if (arrayXP[i][3] == category) { document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].textContent = arrayXP[i][0]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].href = arrayXP[i][1]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].target = arrayXP[i][2]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].id = arrayXP[i][3]; document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].classList.add(arrayXP[i][3]); document.querySelector(".div_global." + child_css_change).querySelectorAll('a')[bb].classList.add(arrayXP[i][4]); var bb = ++bb; } } } } function parent_push(parentNode, child_css_change, childPosition, title, category, insertBefore_that_element, switchX) { //parentElement_build(parentNode, childPosition) div_sample(parentNode, insertBefore_that_element, switchX, child_css_change); parentElement_inner(parentNode, '.title_global', title, child_css_change); // 该标题改属性 parentElement_push(parentNode, category, child_css_change, insertBefore_that_element, switchX) } /** * 举例// * parentElement_build('.echo',3) * parentElement_inner('.echo','.title','社交媒体//','SocialX'); * parentElement_push('.echo','Social','SocialX') * parentElement('.echo','Social',4,'社交媒体//','Social') */ function child_build(div_global_selector) { // 复制父元素下最后一个子元素 //console.log("// child_build() 正在复制 " + div_global_selector + " 下的元素并追加到自身身后..."); if (document.querySelector(div_global_selector)) { let parentElement = document.querySelector(div_global_selector); // 抓住老番茄 let node = document.querySelector(div_global_selector).lastElementChild; // 取出 let clone = node.cloneNode(true); // 复制 parentElement.appendChild(clone); } } // 替换子元素的内容 function child_inner(div_global_selector, length, array, category, insertBefore_that_element, switchX) { //let arrayX = parentNodeX; if (parentNodeX[length][3] == category) { // 如果类目匹配则执行 //child_build(div_global_selector); // 開始复制子元素 li_sample(div_global_selector, insertBefore_that_element, switchX); document.querySelector(div_global_selector).lastElementChild.querySelector('a').textContent = parentNodeX[length][0] // 開始修改其內容 document.querySelector(div_global_selector).lastElementChild.querySelector('a').href = parentNodeX[length][1] // 開始需改其鏈接 document.querySelector(div_global_selector).lastElementChild.querySelector('a').target = parentNodeX[length][2] // 開始修改其目標 } } function child_push(div_global_selector, length, array, category, insertBefore_that_element, switchX) { for (i = 0; i < parentNodeX.length; i++) { child_inner(div_global_selector, i, array, category, insertBefore_that_element, switchX); // 替换子元素内容 } } // document.querySelectorAll("div.echo")[0].children // child_push(".div_global.pornMaker > ul","10","") // child_push(".div_global.pornMaker > ul","10","","porn") let ads_css = '.ad_img {display:none! important; pointer-events: none !important;}\ ' function ads_remove(selector) { document.querySelectorAll(selector).forEach((x) => { x.remove() }) css_add(ads_css, "fuckads") } // 自动调整导航宽度及高度 function echo_check_switch(x) { if (x == 1) { var echo_check = setInterval(() => { let widthX = window.innerWidth; let heightX = window.innerHeight; setTimeout(() => { if (document.querySelector("#navigation[style]")) { if (document.querySelector("#navigation[style]").style.opacity == 1) { if (widthX != window.innerWidth | heightX != window.innerHeight) { body_build('true'); //console.log("// echo_check_switch() 捕捉到导航变动...,且导航处于显示状态...") } } } else { //console.log("未捕捉到导航...,且导航处于未显示状态...") } }, 1000) }, 500) } else if (x == 0) { //console.log("// echo_check_switch() 导航已关闭,清理导航大小变化监控循环...") clearInterval(echo_check) // 清理循环 } } const js_common_fx = { //crisp: 'https://limbopro.com/Adguard/crisp.js' // crisp 聊天系统 chat } // 动态创建并引用外部资源 外部样式表 外部脚本 function thrd_party_file(tagname, url, where) { const ele_New = document.createElement(tagname); // script if (tagname == "script") { ele_New.type = "text/javascript"; ele_New.src = url; ele_New.setAttribute('async', '') // link } else if (tagname == "link") { ele_New.rel = "stylesheet"; ele_New.type = "text/css"; ele_New.href = url; } if (where == "body") { document.body.appendChild(ele_New); } else if (where == "head") { document.head.appendChild(ele_New); } } function crisp_window_switch() { //console.log("// crisp_window_switch() 于导航页面手动开启Crisp聊天窗口...") let crisp_check = setInterval(() => { if (document.querySelector("span[data-id]")) { document.querySelector("span[data-id]").click(); clearInterval(crisp_check); } }, 1000); let crisp_visible = setInterval(() => { if (document.querySelectorAll("[data-visible='true']").length > 1) { crisp_window_remove("1"); clearInterval(crisp_visible); } else { if (document.querySelectorAll("[data-visible='true']").length == 1) { crisp_window_remove("0"); clearInterval(crisp_visible); } } }, 1000); } function crisp_window_remove(x) { if (x == 0) { if (document.querySelector("[data-for-id=new_messages]")) { // 如果有未读消息则强制显示 document.querySelector('[aria-live=polite].crisp-client').classList.add('active'); console.log("// crisp_window_remove() 有未读消息,执行显示Crisp成功...") } else { if (document.querySelector('[aria-live=polite].crisp-client')) { document.querySelector('[aria-live=polite].crisp-client').classList.remove('active'); //console.log("// crisp_window_remove() 执行隐藏Crisp成功...") } } } else if (x == 1) { document.querySelector('[aria-live=polite].crisp-client').classList.add('active'); console.log("// crisp_window_remove() 手动打开,执行显示Crisp成功...") } } function crisp_active(x) { if (x == 1) { if (!document.querySelector("script[src*='crisp']")) { //console.log("// crisp_active() 插入 crisp 系统脚本...") //thrd_party_file("script", "https://limbopro.com/Adguard/crisp.js", "head"); crisp_window_remove('1'); crisp_window_switch(); } else { crisp_window_remove('1'); crisp_window_switch(); } } } function crisp_auto_hidden() { val = null ////console.log(val === document.querySelector(selector.body_css)); if (!document.querySelector("[data-for-id=new_messages]") && val == document.querySelector('.cc-1hqb[data-visible=true]')) { crisp_window_remove('0'); // 隐藏crisp按钮 //console.log("// crisp_auto_hidden()执行隐藏Crisp...") } else { if (document.querySelector("[data-for-id=new_messages]")) { // 如果有未读消息则强制显示 crisp_window_remove('0'); console.log("/ crisp_auto_hidden() 执行显示Crisp...") } console.log("/ crisp_auto_hidden() 没有对应结果...") } } //thrd_party_file("script", "https://limbopro.com/Adguard/crisp.js", "head"); // 默认加载 Crisp 脚本 但不显示对话框 function testx() { var selector = window.prompt("请输入你想要移除的元素对应的标签 e.g. div a li ul 或更具体的元素选择器 e.g. .ad #ad "); if (document.querySelectorAll(selector)[0]) { document.querySelectorAll(selector).forEach((x) => { x.remove() }) } else { alert("元素不存在!") } } if (getCookie('googlesearch') == 'True') { open_googlesearch_iframe(); } else { close_googlesearch_iframe(); } function open_googlesearch_iframe() { setCookie('googlesearch', 'True', 7); if (document.cookie.indexOf("alert") == -1) { //alert('cookie 不存在') setCookie('alert', '7', '7') alert('功能呈现页尚处于优化中...,欢迎反馈使用体验及建议...(搜索结果基于谷歌,如需更好的体验可多刷新/重新加载几次搜索页面以便谷歌自动化完善样式...)') } if (document.querySelector('#searchbyGoogle')) { document.querySelector('#searchbyGoogle').style.zIndex = '1141541'; document.querySelector('#searchbyGoogle').style.opacity = '1'; body_build('false'); document.querySelector('#x4Home').style.bottom = '30%'; setTimeout(() => { if (!document.querySelectorAll("script[src*='=a897efc85e']").length >= 1) { let parentElement = document.querySelector('#searchbyGoogle'); let new_s = document.createElement('script'); //new_s.src = 'https://cse.google.com/cse.js?cx=a897efc85ee66bfdd'; parentElement.appendChild(new_s); body_build('false'); } }, 500); googlesearch_blank(); } else { // 创建一个搜索框 document.querySelector('#x4Home').style.bottom = '30%'; // 先把导航按钮提高一个度 let new_b = document.createElement('body') let new_div_search = document.createElement('div') new_div_search.className = "new_div_search" new_b.id = 'searchbyGoogle' new_b.style.zIndex = 1141541; new_b.style.bottom = '0%'; new_b.style.position = 'absolute'; let old_b = document.body; new_b.appendChild(new_div_search) old_b.appendChild(new_b); let googlesearch = document.createElement('div'); googlesearch.className = 'gcse-search'; new_div_search.appendChild(googlesearch); setTimeout(() => { if (!document.querySelectorAll("script[src*='=a897efc85e']").length >= 1) { let parentElement = document.querySelector('#searchbyGoogle'); let new_s = document.createElement('script'); //new_s.src = 'https://cse.google.com/cse.js?cx=a897efc85ee66bfdd'; parentElement.appendChild(new_s); body_build('false'); } }, 500) // 创建一个关闭搜索的按钮 let close_search_button = document.createElement('button') close_search_button.id = 'close_search_button'; close_search_button.className = 'close_search_button'; close_search_button.setAttribute('onclick', 'close_googlesearch_iframe()'); document.querySelector('#searchbyGoogle').appendChild(close_search_button); googlesearch_blank(); } } function googlesearch_blank() { var googlesearch_blank_check = setInterval(() => { // 重新设置 谷歌搜索结果页面 target 为 _blank 的链接 console.log("定时器正在执行...") if (document.querySelector("body#searchbyGoogle").style.zIndex == -11415411) { clearInterval(googlesearch_blank_check); console.log("搜索按钮关闭,清除计时器..."); /*for (i = 1; i <= googlesearch_blank_check; i++) { clearInterval(i); }*/ } if (document.querySelectorAll("div[class*='gs']")[0]) { //setTimeout(() => { if (document.querySelectorAll(".gsc-results-wrapper-overlay.gsc-results-wrapper-visible")[0]) { let a = document.querySelectorAll(".gsc-results-wrapper-overlay.gsc-results-wrapper-visible")[0].querySelectorAll("a") var aa = 0; for (i = 0; i < a.length; i++) { a[i].target = '_blank' var aa = ++aa; //console.log(aa) if (aa + 1 >= a.length) { //clearInterval(googlesearch_blank_check) console.log("共计" + aa + "个搜索结果,链接的 target值 重置设置结束...") } } } //}, 1000) } }, 2500) } function close_googlesearch_iframe() { if (document.querySelectorAll(".gsc-modal-background-image.gsc-modal-background-image-visible")[0]) { // 先关闭搜索结果页 if (document.querySelectorAll("div[class*='gsc-results-close-btn']")[0]) { document.querySelectorAll("div[class*='gsc-results-close-btn']")[0].click(); } } else if (!(/\b(gsc.q)\b/i.test(document.location.href))) { // 在关闭搜索框 console.log('谷歌搜索已关闭...') setCookie('googlesearch', 'False'); x4Home_button("1"); // 显示导航按钮; if (document.querySelector('#searchbyGoogle')) { document.querySelector('#searchbyGoogle').style.zIndex = '-11415411' document.querySelector('#searchbyGoogle').style.opacity = '0' document.querySelector('#x4Home').style.bottom = '15%'; // 搜索隐藏后把导航按钮降低一个度 } } else { open_googlesearch_iframe() } } // 复制 input 内容 function copyText(id1, id2, Text) { // 复制文本按钮 let corlor = { // 定义常量 css: { borderRight_copied: "6px solid white", borderRight_recover: "6px solid #38a3fd", backgroundColor_copied: "#00AC6A", backgroundColor_recover: "#2563eb" } } function border_color(ele, value) { // 制作一个循环 for (let i = 0; i < ele.length; i++) { ele[i].style.borderRight = value } } const ele_1 = document.getElementById(id1); const ele_2 = document.getElementById(id2); const ele_array = [ele_1, ele_2]; // 复制工作开始 const input = document.querySelectorAll("input#copy"); const range = document.createRange(); range.selectNode(input[0]); const selection = window.getSelection(); if (selection.rangeCount > 0) selection.removeAllRanges(); // 判断光标是否复制其他内容 如有则清除 selection.addRange(range); document.execCommand('copy'); // 复制工作结束 ele_2.innerText = "复制成功!"; ele_2.style.backgroundColor = corlor.css.backgroundColor_copied; border_color(ele_array, corlor.css.borderRight_copied) setTimeout(() => { ele_2.innerText = Text; ele_2.style.backgroundColor = corlor.css.backgroundColor_recover; border_color(ele_array, corlor.css.borderRight_recover) }, 3000); } // 在页面动态插入元素并赋予相应元素 function ele_dynamicAppend(selector, attribute, txt, style, func, id, array, tag) { let new_ele = document.createElement(tag); new_ele.innerHTML = txt; new_ele.setAttribute(attribute, func); new_ele.setAttribute("id", id); new_ele.setAttribute("style", style); var here = document.querySelectorAll(selector); if (here.length > 0) { here[0].insertBefore(new_ele, here[0].childNodes[array]) //here[0].appendChild(new_ele); console.log("按钮已添加;") } } function testy() { //alert('在做了(0%)') var js_url = window.prompt("请输入第三方脚本(应以 .js 为后缀)"); var hear_or_body = window.prompt("请输入脚本插入位置(e.g. body head)"); thrd_party_file('script', js_url, hear_or_body) if (!js_url == '') { body_build('false'); } } function closeP() { alert("部分页面可能无法正常关闭...!届时请手动关闭!请点击确定!"); window.close() }