百度文库去广告

隐藏AI助手和文档推荐

  1. // ==UserScript==
  2. // @name 百度文库去广告
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-09-09
  5. // @description 隐藏AI助手和文档推荐
  6. // @author AN drew
  7. // @match https://wenku.baidu.com/*
  8. // @match https://eduai.baidu.com/*
  9. // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
  10. // @require https://lib.baomitu.com/jquery-cookie/1.4.1/jquery.cookie.min.js
  11. // @grant GM_addStyle
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. GM_addStyle(`
  18. #app-left.no-full-screen{display:none!important}
  19. .chat-entry-wrapper_logo{display:none!important}
  20. .vip-member-pop-content{display:none!important}
  21. .pay-layer-wrapper{display:none!important}
  22. #wk-chat{display:none!important}
  23. .pc-cashier-card{display:none!important}
  24. .vip-center{display:none!important}
  25. .vip-activity-wrap-new{display:none!important}
  26. #app-right{display:none!important}
  27. #right-wrapper-id{display:none!important}
  28. .pcstep-foot-pagination{display:none!important}
  29. .relative-recommend-wrapper{display:none!important}
  30. .vip-pay-pop-v2-wrap{display:none!important}
  31. .right-chat-wrapper{display:none!important}
  32. .full-screen .next-doc-wrap{display:none!important}
  33. #journal-view + .catalog{display:none!important}
  34. #journal-view{width:100%!important}
  35. .journal{width:100%!important}
  36. .journal li:nth-of-type(2){width:93%!important}
  37. .pcStepView{max-width:100%!important}
  38. .left-main-wrapper{width:100%!important}
  39. .center-wrapper{width:100%!important}
  40. .creader-root .pageNo{display:block!important; text-align:center!important}
  41. .creader-root{width:100%!important}
  42. #app.pcViewClient.classic .left-wrapper{width:100%!important}
  43. .reader-wrap.wk-web-4774{width:100%!important}
  44. .reader-topbar{display:block!important; width:100%!important}
  45. .reader-topbar[style*='fixed']{position:relative!important;}
  46. .full-screen .reader-topbar{display:none!important;}
  47. .tool-bar-wrapper.wk-web-4774{width:95%!important}
  48. #journal-view .tool-bar-wrapper{width:100%!important}
  49. .supernatant-tools{left:calc(92%)!important}
  50. .quill-editor{max-width:68%!important}
  51. `)
  52.  
  53.  
  54.  
  55. let t=setInterval(function(){
  56. if($('.chat-header .close').length>0)
  57. {
  58. $('.chat-header .close').click();
  59. }
  60.  
  61. if($('.fold-page-text .btn.unfold').length>0 && $('.fold-page-text .btn.unfold').text().indexOf('查看剩余全文') > -1)
  62. {
  63. $('.fold-page-text .btn.unfold').click();
  64. }
  65.  
  66. if($('.liter-head-fold-btn').length>0 && $('.liter-head-fold-btn').text().indexOf('展开更多信息') > -1)
  67. {
  68. $('.liter-head-fold-btn').click();
  69. }
  70. },1000);
  71.  
  72. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址