NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/mlambley // @name ANZ online banking ad remover // @description Removes in-panel advertisements from ANZ online banking // @copyright 2020, mlambley // @license MIT // @version 0.0.1 // @author You // @include *.anz.com/* // @grant none // ==/UserScript== (function () { 'use strict'; window.addEventListener('load', function () { var sheet = document.styleSheets[0]; sheet.insertRule(".accountlevelOffer { display:none; }", 0); sheet.insertRule(".ghostTileCont320 { display:none; }", 0); sheet.insertRule(".listViewAccountWrapperYourAccounts .accountsTableImageSpacer { display:none; }", 0); }, false); })();