I run addblock+ on GamerEscape with no problem. Firefox.
Printable View
I use Violentmonkey, which is open source and cross browser. The following script works as of January 2021
Code:// ==UserScript==
// @name Remove ff14angler ad blocking limited
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove ff14angler ad blocking limited.
// @author çİş
// @match https://*.ff14angler.com/*
// @match https://ff14angler.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var ads = '<ins class="adsbygoogle adsbygoogle-noablate" style="display: none !important;"> <iframe>111</iframe></ins>';
$('#main').prepend(ads);
$(".donate_button").remove();
$('#footer>div>b').remove();
})();