360问答美化&360新知美化

360问答隐藏左栏,隐藏广告,显示全部回答;360新知隐藏右栏,隐藏插屏广告;支持电脑端和手机端

目前为 2021-05-16 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name 360问答美化&360新知美化
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 360问答隐藏左栏,隐藏广告,显示全部回答;360新知隐藏右栏,隐藏插屏广告;支持电脑端和手机端
  6. // @author AN drew
  7. // @match https://*.wenda.so.com/*
  8. // @match http://xinzhi.wenda.so.com/*
  9. // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14.  
  15. var url = window.location.href;
  16. if(url.indexOf("wenda.so.com/u")== -1)
  17. {
  18. $("#bd").attr("style","display:flex;justify-content:center;align-items:center;");
  19. $(".main").attr("style","width:1175px;min-height:0px;")
  20. setTimeout(function(){
  21. $(".main").attr("style","width:1175px;min-height:0px;")
  22. })
  23. $(".umeditor-wrap.js-umeditor-wrap").attr("style","width:1173px;min-height:226px;");
  24. $(".edui-container").attr("style","width:1173px;");
  25. $("#detailUmeditor").attr("style","width: 1150px; min-height: 165px; z-index: 0;");
  26. $(".js-detail-main").attr("style","width:1175px")
  27. $(".aside").hide()
  28. }
  29.  
  30. setInterval(function(){
  31. $(".hot-list-wrap").hide()
  32. $("#business").hide()
  33. $("#info-list").hide()
  34. $(".js-recflow-list").hide()
  35.  
  36. $(".enterprise-det").hide()
  37. $(".e_idea_list").hide()
  38. $("#e_idea_wenda_leftBox").hide()
  39. $(".enterprise_intro").hide()
  40. $(".js-interested").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
  41. $(".rec-left").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
  42. $(".art-flow").hide()
  43. $("#mediav-bot").hide()
  44. $("#detail-leftside-rec").hide()
  45. $("#js-mod-fixed-float").hide()
  46. $(".top-search-banner").hide()
  47. $(".detail-guess").hide()
  48. $("#detail-guess-wrap").hide()
  49. $("#js-mod-recommond-list").hide()
  50. $("#autoList").hide()
  51. $("#onesearch").hide()
  52. $("#task-left-wrap").remove()
  53. $("#js-fixed-rt-bot-inn").hide()
  54. $(".busi-article").hide()
  55. $("#e_xinzhi_detail_interested").hide()
  56. $("#js-list-item").hide()
  57. $("#news-card").hide()
  58. $("#garllery").hide()
  59. $("#business").hide()
  60. $(".card-bor").hide()
  61. $(".js-relate-list").hide()
  62. $(".js-ajax-askmore").hide()
  63. $(".js-interest-list").hide()
  64. $("#interest-list").hide()
  65. $(".g-scroll-loading").hide()
  66. $("#info-list").hide()
  67. $("#js-rec").hide()
  68. $(".mod-detail-normal").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
  69. $(".js-busi-item").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
  70. $(".mod-share").hide()
  71. $(".mod-wechat-qrcode-mini").hide()
  72.  
  73. $("h2").each(function(){
  74. console.log($(this).get(0))
  75. if($(this).text().indexOf("您可能感兴趣的内容") > -1)
  76. $(this).hide()
  77. else if($(this).text().indexOf("为您推荐") > -1)
  78. $(this).hide()
  79. else if($(this).text().indexOf("今日热点") > -1)
  80. $(this).hide()
  81. else if($(this).text().indexOf("相关资讯") > -1)
  82. $(this).hide()
  83. })
  84.  
  85. if($(".js-answer-page").length>0)
  86. $(".js-answer-page").get(0).click()
  87. },1)
  88.  
  89. $(".username").removeClass("dsp-inline-block");
  90.  
  91. $(".mod-see-other").click()
  92. $(".btn-wrap").click()
  93. $(".unfold-page").click()
  94. $(".ico-arr-down").click()
  95.  
  96. })();

QingJ © 2025

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