心平气和看虎扑

2023/4/23 02:31:41

  1. // ==UserScript==
  2. // @name 心平气和看虎扑
  3. // @namespace Violentmonkey Scripts
  4. // @match https://bbs.hupu.com/*.html
  5. // @license MIT
  6. // @grant none
  7. // @version 1.11
  8. // @author -
  9. // @description 2023/4/23 02:31:41
  10. // ==/UserScript==
  11.  
  12.  
  13.  
  14. var containers = document.querySelectorAll(".wrapper-container");
  15.  
  16. for (let i = 1; i < containers.length; i++) {
  17. containers[i].style.display = 'none';
  18. }
  19.  
  20.  
  21. var replies = document.querySelectorAll(".post-reply-list-operate");
  22.  
  23. for (let i = 0; i < replies.length; i++) {
  24. replies[i].style.display = 'none';
  25. }
  26.  
  27. // 屏蔽湿乎乎这个傻逼官方引战区:
  28. var wholeScreen = document.querySelector("#__next");
  29.  
  30.  
  31.  
  32.  
  33. var title = document.querySelector(".index_br__hJajv");
  34. var section = title.querySelector(".index_hp-pc-breadcrumb___Sojb");
  35.  
  36. var children = section.querySelectorAll("span");
  37.  
  38.  
  39. for (let child of children) {
  40. if (child.textContent === "湿乎乎的话题 » ") {
  41. const htmlString = `
  42. <div>
  43. <h3>珍惜生命</h3>
  44. <h3>远离官方引战区</h3>
  45. <button>
  46. <a href="https://bbs.hupu.com/"> 回到首页 </a>
  47. </button>
  48. <div style="color:white">
  49. ${setTimeout(function() {
  50. window.location.href = 'https://bbs.hupu.com/';
  51. }, 5000)}
  52. </div>
  53. </div>
  54. `
  55.  
  56. wholeScreen.innerHTML =htmlString;
  57. wholeScreen.style.width = '200px'; // set the width of the element
  58. wholeScreen.style.margin = 'auto'; // set the margin to auto to center horizontally and vertically
  59.  
  60. }
  61. }
  62.  

QingJ © 2025

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