Greasy Fork is available in English.

NeedRom Anti-Anti-ABP

Allow download without disabling ABP, may need to refresh the page.

À partir de 2014-05-17. Voir la dernière version.

// ==UserScript==
// @name         NeedRom Anti-Anti-ABP
// @namespace    http://jixun.org/
// @version      1.0
// @description  Allow download without disabling ABP, may need to refresh the page.
// @match        http://www.needrom.com/*
// @copyright    2012+, You
// @run-at       document-start
// ==/UserScript==

addEventListener('DOMContentLoaded', function () {
	unsafeWindow.jQuery(function ($) {
		$.adblockJsFile = true;
		$('#ba_banner').remove();
		$('<s>').attr({
			id: 'ba_banner'
		}).css({
			padding: 1
		}).appendTo('body');
	});
}, false);