Adblock for Requestly

Evades Requestly's adblock blocker

  1. // ==UserScript==
  2. // @id adblock.requestly
  3. // @version 0.1
  4. //
  5. // # WHAT?
  6. // @name Adblock for Requestly
  7. // @description Evades Requestly's adblock blocker
  8. // @license The Unlicense
  9. // @licenseURL http://unlicense.org/
  10. //
  11. // # WHO?
  12. // @author Hocine Benferhat
  13. // @namespace https://github.com/hocine
  14. // @icon https://c2.staticflickr.com/4/3194/2286487061_c87015d8d7_z.jpg
  15. //
  16. // # WHERE?
  17. // @match *://web.requestly.in/*
  18. // @homepageURL https://github.com/hocine/gm.adblock.requestly/
  19. // @supportURL https://github.com/hocine/gm.adblock.requestly/issues
  20. //
  21. // # HOW?
  22. // @grant none
  23. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
  24. // @run-at document-start
  25. // @priority 9001
  26. // ==/UserScript==
  27.  
  28.  
  29. (function() {
  30. this.$ = this.jQuery = jQuery.noConflict(true);
  31. __add_styles(
  32. '.ad-container {' +
  33. ' right: -9999px !important;' +
  34. ' position: fixed !important;' +
  35. '}'
  36. );
  37.  
  38. function __add_styles(styles) {
  39. $('head').append('<style>' + styles + '</style>');
  40. }
  41. })();

QingJ © 2025

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