Skip to content

Instantly share code, notes, and snippets.

@Silur
Created December 24, 2016 18:38
Show Gist options
  • Save Silur/932f1083f571e60e2f6a499dd1587df1 to your computer and use it in GitHub Desktop.
Save Silur/932f1083f571e60e2f6a499dd1587df1 to your computer and use it in GitHub Desktop.
pls no christmas spam
// _ _ _
// (_) | | (_)
// __ _ _ __ _ _ __ ___| |__ _ ___
// / _` | '__| | '_ \ / __| '_ \ | / __|
//| (_| | | | | | | | (__| | | |_| \__ \
// \__, |_| |_|_| |_|\___|_| |_(_| |___/
// __/ | _/ |
// |___/ |__/ by Silur
// removes all christmas related shit from facebook wall
var list = document.getElementsByTagName("p");
for (var i=0; i<list.length; i++) {
var p = list[i];
if (~p.innerHTML.search(/karácsony/i)) { var r = p.parentNode.parentNode.parentNode.parentNode; r.parentNode.removeChild(r); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment