巴哈廣告欄位刪除

try to take over the world!

  1. // ==UserScript==
  2. // @name 巴哈廣告欄位刪除
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @include https://forum.gamer.com.tw*
  8. // @match http://*/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var elements = document.getElementsByClassName("b-list_ad");
  16. while(elements.length > 0){
  17. elements[0].parentNode.removeChild(elements[0]);
  18. }
  19. })();
  20.  

QingJ © 2025

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