tinyurl Ad Blocker

ad blocker for tinyurl.com

目前为 2022-04-01 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name tinyurl Ad Blocker
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description ad blocker for tinyurl.com
  6. // @author Owner, Creator, and Programmer of the ZeriusLearning websites.
  7. // @match *://tinyurl.com/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. var i = setInterval(function() {
  17. if(document.querySelector("[data-ad-processed='1']") !== undefined) {
  18. document.querySelector("[data-ad-processed='1']").remove();
  19. document.querySelector("[data-ad-processed='1']").remove();
  20. clearInterval(i);
  21. console.log("Deleted Ads.");
  22. }
  23. },0);
  24. })();