Adblock for Requestly

Evades Requestly's adblock blocker

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @id           	adblock.requestly
// @version      	0.1
//
// # WHAT?
// @name         	Adblock for Requestly
// @description  	Evades Requestly's adblock blocker
// @license         The Unlicense
// @licenseURL		http://unlicense.org/
//
// # WHO?
// @author       	Hocine Benferhat
// @namespace    	https://github.com/hocine
// @icon         	https://c2.staticflickr.com/4/3194/2286487061_c87015d8d7_z.jpg
//
// # WHERE?
// @match        	*://web.requestly.in/*
// @homepageURL     https://github.com/hocine/gm.adblock.requestly/
// @supportURL      https://github.com/hocine/gm.adblock.requestly/issues
//
// # HOW?
// @grant        	none
// @require      	https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
// @run-at          document-start
// @priority        9001
// ==/UserScript==


(function() {
	this.$ = this.jQuery = jQuery.noConflict(true);
	
	__add_styles(
		'.ad-container {' +
		'    right: -9999px !important;' +
		'    position: fixed !important;' +
		'}'
	);

	function __add_styles(styles) {
		$('head').append('<style>' + styles + '</style>');
	}
})();