vue ad remove

try to take over the world!

  1. // ==UserScript==
  2. // @name vue ad remove
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description try to take over the world!
  6. // @author huozi
  7. // @include https://cn.vuejs.org/*
  8. // @match https://cn.vuejs.org/
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var gg = document.getElementById('sidebar-sponsors-special');
  15. var ad = document.getElementById('ad');
  16. var ads = document.getElementsByClassName('ad-pagetop');
  17. gg.parentNode.removeChild(gg);
  18. ad.parentNode.removeChild(ad);
  19. for (var i = 0; i < ads.length; i++) {
  20. ad = ads[i];
  21. ad.parentNode.removeChild(ad);
  22. }
  23. // Your code here...
  24. })();

QingJ © 2025

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