Skip to content

Instantly share code, notes, and snippets.

@mgoellnitz
Last active July 4, 2017 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgoellnitz/d21d8475bafb7c0378080c57cf65d800 to your computer and use it in GitHub Desktop.
Save mgoellnitz/d21d8475bafb7c0378080c57cf65d800 to your computer and use it in GitHub Desktop.
Clean Homee Dashboard from annoying and insulting "greeting" by greasemonkey script
// ==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 m.goellnitz@provocon.de
// ==/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