I hate when someone dictates rules for me so I created a plugin for firefox that removes delfi.lv popup window that states that I use Ad-blocker plugin on my browser and commands me to remove or disable my Ad-blocker.
So here u go – I made plugin called AdFreeDelfi wich removes this modal and let me browse delfi.lv without this anoying popup.
The actual code is trivial. 😀
$( function() {
setInterval(remove, 100);
});
let remove = function(){
$('.tp-backdrop').css('display', 'none');
$('.tp-modal').css('display', 'none');
$('body').removeClass('tp-modal-open');
};
Go ahead and check for your self.