Greasy Fork is available in English.

Santander - panel bez reklam i wiadomości

usuwa okienko wiadomości i reklam z panelu santander...

Stan na 18-06-2020. Zobacz najnowsza wersja.

// ==UserScript==
// @name             Santander - panel without ads and messages
// @name:pl          Santander - panel bez reklam i wiadomości
// @namespace        https://greasyfork.org/pl/users/247926-kowadl0
// @version          1.0
// @description      remove messages and ads from santander panel...
// @description:pl   usuwa okienko wiadomości i reklam z panelu santander...
// @author           FejmiQ
// @license          fejmiq.license
// @include          https://www.santander.pl/*
// @grant            none
// ==/UserScript==

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