Remove HowtoGeek ads

remove howtogeek ads

  1. // ==UserScript==
  2. // @name Remove HowtoGeek ads
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description remove howtogeek ads
  6. // @author You
  7. // @match https://www.howtogeek.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=howtogeek.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. window.addEventListener("load", (event) => {
  16. let ad_divs = document.querySelectorAll('div[id*="ad"]')
  17. for(let i = 0; i < ad_divs.length; i++){
  18. ad_divs[i].remove()
  19. }
  20. });
  21. })();

QingJ © 2025

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