Last active
July 4, 2017 14:59
-
-
Save mgoellnitz/d21d8475bafb7c0378080c57cf65d800 to your computer and use it in GitHub Desktop.
Clean Homee Dashboard from annoying and insulting "greeting" by greasemonkey script
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 Homee Noise Reducer | |
// @namespace http://home.noisereduc.er | |
// @description Remove annoying add and rubbish box from web Homee frontend | |
// @include htt*://*hom.ee* | |
// @version 1.0 | |
// @copyright [email protected] | |
// ==/UserScript== | |
function deobfuscate() { | |
var oc = document.getElementsByClassName('sentence'); | |
var w = oc[0].parentNode; | |
oc[0].innerHTML=''; | |
} | |
setTimeout(deobfuscate, 3500); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment