Skip to content

Instantly share code, notes, and snippets.

@git2samus
Created June 26, 2014 15:10
Show Gist options
  • Select an option

  • Save git2samus/88f8d88c8ed24d4feb76 to your computer and use it in GitHub Desktop.

Select an option

Save git2samus/88f8d88c8ed24d4feb76 to your computer and use it in GitHub Desktop.
Facebook Suárez Filter
// ==UserScript==
// @name Facebook Suarez Filter
// @namespace git2samus
// @include https://www.facebook.com/*
// @match https://www.facebook.com/*
// ==/UserScript==
var suarez_re = /Su[aá]rez/i;
for (contentNode in document.getElementsByClassName('userContentWrapper')) {
if (suarez_re.test(contentNode.textContent) {
contentNode.deleteNode();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment