您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
remove messages and ads from santander panel...
当前为
// ==UserScript== // @name Santander - remvoe ads // @name:pl Santander - usuwa reklamy // @namespace https://greasyfork.org/pl/users/247926-kowadl0 // @version 1.1 // @description remove messages and ads from santander panel... // @description:pl usuwa okienko wiadomości i reklam z panelu santander... // @author FejmiQ // @license fejmiq.license.free // @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); 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); })();