Adblock for Requestly

Evades Requestly's adblock blocker

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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>');
	}
})();