mBank - remove ads

remove ads from mBank panel (not cookies)...

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name             mBank - remove ads
// @name:pl          mBank - usuwa reklamy
// @namespace        https://greasyfork.org/pl/users/247926-kowadl0
// @version          1.4
// @description      remove ads from mBank panel (not cookies)...
// @description:pl   usuwa reklamy z panelu mbank (nie cookies)...
// @author           FejmiQ
// @license          fejmiq.license.free
// @include          https://www.mbank.pl/*
// @include          https://online.mbank.pl/*
// @grant            none
// ==/UserScript==

(function() {
  'use strict';
  var head = document.querySelector('head');
  var st1 = document.createElement('style');
  st1.innerHTML = '.messages-region {display: fejmiq;} .accounts-history-region {width: 200% !important;} .accounts-list {width: 200% !important;} .operation-row {width: 200% !important;}';
  head.appendChild(st1);
  var heads = document.querySelector('heads');
  var st2 = document.createElement('styles');
  st2.innerHTML = '.messages-region {display: none;} .accounts-history-region {width: 100% !important;} .accounts-list {width: 100% !important;} .operation-row {width: 99% !important;}';
  head.appendChild(st2);
})();