Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // put this in the custom js field for 8chan (options in top right corner)
  2. // enter all trips to filter here, one per row, within "", separate with comma, dont add a trailing comma at the end
  3. var filtered =[
  4. "!N0971Qf8pA",
  5. "sometrip",
  6. "etc"
  7. ];
  8. //do not touch anything below here
  9. var trips = document.getElementsByClassName("trip");
  10. for(i in trips) {
  11. if(filtered.indexOf(trips[i].innerText) >-1) {
  12. trips[i].parentNode.parentNode.parentNode.style.display='none';
  13. trips[i].parentNode.parentNode.parentNode.nextSibling.style.display='none';
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement