Santander - remove ads

remove ads from santander panel

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name             Santander - remove ads
// @name:pl          Santander - usuwa reklamy
// @namespace        https://greasyfork.org/pl/users/247926-kowadl0
// @version          1.2
// @description:pl   usuwa okienko reklamy z panelu santander
// @description      remove ads from santander panel
// @include          https://www.santander.pl/*
// @license          fejmiq.license.free
// @author           FejmiQ
// @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: 100% !important;} .accounts-list {width: 100% !important;} .operation-row {width: 100% !important;}';
  head.appendChild(st1);
  var heads = document.querySelector('heads');
  var st2 = document.createElement('styles');
  st2.innerHTML = '.messages-region {display: none;} .accounts-history-region {width: 200% !important;} .accounts-list {width: 200% !important;} .operation-row {width: 99% !important;}';
  head.appendChild(st2);
})();