NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Close adblocker alert
// @namespace https://www.myfxbook.com
// @version 0.3
// @description User script that automatically closes the adblocker alert which keeps popping up. Perhaps a design error.
// @author angelo.ndira@gmail.com
// @match https://www.myfxbook.com
// @match https://www.myfxbook.com/*
// @match http://www.myfxbook.com
// @match http://www.myfxbook.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
try {
closeAdBlockerLightBox();
} catch(ex) {
console.log("Error occurred while closing adblocker alert. " + ex);
}
})();