Advertisement
Guest User

Untitled

a guest
Jun 7th, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Techdirt Comment Filter
  3. // @namespace https://google.com
  4. // @author Sergey Brin
  5. // @version 1.0
  6. // @description Hides out_of_the_blue Comments on Techdirt
  7. // @include http://www.techdirt.com/*
  8. // @include https://www.techdirt.com/*
  9. // ==/UserScript==
  10. javascript:(function() {var as=document.body.querySelectorAll("li.cmt");for(var i=0;i<as.length;i++)if(as[i].innerHTML.match(/out_of_the_blue/gim)){var tr=as[i];tr.style.display="none";}})()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement