Last active
July 12, 2017 15:32
-
-
Save mgoellnitz/d1efdae383dfb4112f322daa0e4b7272 to your computer and use it in GitHub Desktop.
Commerzbanking Homescreen Space Retriever
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Commerzbank Banking Add Blocker | |
// @namespace http://quiet.commerzbank.de | |
// @description Remove annoying add from banking home screen to retrieve space for other widgets | |
// @include htt*://kunden.commerzbank.de* | |
// @version 1.0 | |
// @copyright [email protected] | |
// ==/UserScript== | |
function deobfuscate() { | |
var oc = document.getElementById('wi1'); | |
var w = oc.parentNode; | |
oc.innerHTML=''; | |
} | |
setTimeout(deobfuscate, 3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment