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와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==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);
})();