// ==UserScript== // @name 360doc个人图书馆优化 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 隐藏广告,隐藏打赏提示,点击全屏按钮后隐藏登录框,非可信域名链接直接打开,自动展开全文,显示打印按钮 // @author AN drew // @match *://www.360doc.com/* // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(()=>{ //点击全屏按钮、打印按钮后隐藏登录框 $('.newbtn_fullscreen , #fixedFullScreen, .newbtn_print, #fixedPrint').click(function(){ $('#registerOrLoginLayer').hide(); $('[style*="background: rgb(0, 0, 0); position: fixed; opacity: 0.5;"] , [style*="background: rgb(0, 0, 0); opacity: 0.5;"]').hide(); }); /* $('.logcloser').click(function(){ $(parent.window.document).find('#registerOrLoginLayer').remove(); $(parent.window.document).find('[style*="background: rgb(0, 0, 0); position: fixed; opacity: 0.5;"] , [style*="background: rgb(0, 0, 0); opacity: 0.5;"]').remove(); }); */ },1500); var domainlist = ["yytcdn.com", "youku.com", "yinyuetai", "yidianzixun.com", "xmnn.cn", "xinmin.cn", "www.s1979.com", "www.qzone.cc", "www.aipai.com", "ws.126.net", "vodjk.com", "video.sxrb.com", "v1.cn", "v.mp.uc.cn", "v.ku6vms.com", "v.ifeng.com", "tv189.", "tudou.com", "tangdou.com", "sohu.com", "smgbb.cn", "sina.com", "qq.com", "qiyi.com", "pptv.com", "pplive.cn", "pomoho.com", "people.com.cn", "people.com", "pclady.com.cn", "netease.", "mtime.com", "m.toutiao", "letvcdn.com", "letv.com", "le.com", "ku6cdn.com", "kksmg.com", "jstv.com", "js.tudouui.com", "iqiyi.com", "iqiyi.com", "iqilu.com", "imgo.tv", "ifengimg.com", "ifeng.com", "huanqiu.", "hitvs.cn", "hitow.net", "haokan.baidu.com", "gmw.cn", "enorth.com", "eastmoney.com", "e23.cn", "douyin.com", "doc88.com", "cztv.com", "cutv.com", "chinanews.com", "chaoxing.com", "cdstm.cn", "cctv.com", "cctv.com", "boosj.com", "bokecc.com", "bilibili.com", "baomihua.com", "b23.tv", "av.rednet.cn", "71.cn", "56.com", "365yg.com", "360kan.com", "17173.com", "163.com", ".yidianzixun.com", ".xiguavideo.net", ".xiguavideo.cn", ".xiguashipin.net", ".xiguashipin.cn", ".xiguaapp.com", ".xiguaapp.cn", ".toutiao.com", ".pstatp.com", ".kuaishou.com", ".ixigua.com", ".365yg.com", "zhiyin.cn", "yoqoo.com", "xinhuanet.com", "xiaoniangao.cn", "www.legaldaily.com.cn", "www.docin.com", "www.5872.com", "wenku.baidu.com", "v.rbc.cn", "v.csdn.hudong.com", "v.chinamil.com.cn", "umiwi.com", "static.youku.com","360doc.com", "resources.pomoho.com", "pps.tv", "pcauto.com.cn", "news.cn", "ku6.com", "jxyinyue.com", "hunantv.com", "hualu5.com", "dv.ce.cn", "cri.cn yntv.cn", "cntv.cn", "client.joy.cn", "bdchina.com", "6.cn", "21cn.com", "m.docin.com", "m.doc88.com", "wk.baidu.com"]; $('#articlecontent a').click(function(){ let href = $(this).attr('href'); let isTrusted = false; $.each(domainlist, function(index, value) { if (href.indexOf(value) > -1) { isTrusted = true; } }) if(isTrusted == false) //非可信域名链接直接打开,不弹提示 { window.open(href); } }); $('[style*="background: rgb(0, 0, 0); position: fixed; opacity: 0.5; margin: 0px; padding: 0px; left: 0px; top: 0px; z-index: 9999;"]').click(function(){ $(this).hide(); }) setInterval(()=>{ $('body').removeClass('articleMaxH'); //自动展开全文 $('.newbtn_print').show(); if($('.newbtn_print').length>0 && $('.newbtn_print').attr('onclick').indexOf('PrintObj.print()') == -1) { $('.newbtn_print').attr('onclick',$('.newbtn_print').attr('onclick')+'PrintObj.print();'); } if($('.atfixednav').css('display')=='block') { $('#fixedPrint').show(); if($('#fixedPrint a').length>0 && $('#fixedPrint a').attr('onclick').indexOf('PrintObj.print()') == -1) { $('#fixedPrint a').attr('onclick',$('#fixedPrint a').attr('onclick')+'PrintObj.print();'); } } $('div[style="position: absolute; left: 0px; top: 0px; z-index: 999; background-color: rgb(0, 0, 0); opacity: 0.5; width: 100%; height: 100%;"]').hide(); $('#ac_buybook').hide(); $('.floatqrcode').hide(); $('#doc360outlinkpop').hide(); $('#adarttopgoogle').hide(); $('#outerdivifartad1').hide(); $('.str_border').hide(); $('#recommendArt .his_her_div').hide(); $('.clear360doc').hide(); $('newsfeed').hide(); $('#topref').parent().hide(); $('.prev_next').hide(); $('#oranuserinfo').hide(); $('#divreward').hide(); },100); })();