Greasy Fork

Urentool UI

Marktplaats hide ads

目前为 2016-11-18 提交的版本。查看 最新版本

// ==UserScript==
// @name Urentool UI
// @namespace http://www.jaron.nl/misc/
// @description Marktplaats hide ads
// @include https://www.marktplaats.nl/*
// @version 0.5
// ==/UserScript==  

(function($) {



	/**
	* hide all ads
	* @returns {undefined}
	*/
	var hideAds = function() {
		$('[id*="google"], [id*="adsense"],.listing-cas').remove();
	};
	

	/**
	* 
	* @param {string} varname Description
	* @returns {undefined}
	*/
	var init = function() {
		hideAds();
	};

	init();

})(jQuery);