Advertisement
pwtenny

Untitled

Aug 8th, 2013
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        mTurkforum.com
  3. // @namespace   pwtenny
  4. // @description Make links readable
  5. // @include     http://mturkforum.com/showthread.php*
  6. // @version     1.1
  7. // ==/UserScript==
  8.  
  9. // Turn links blue.
  10. for(links = document.getElementById("postlist").getElementsByTagName("a"), n = 0; n <= links.length; n++)
  11. {
  12.   if(links[n])
  13.     links[n].style.color = "blue";
  14. }
  15.  
  16. // Hide spam posts on HIT pages.
  17. if(document.head.innerHTML.indexOf("Mturk Forum - Great HITS - RSS Feed") > -1)
  18. {
  19.   for(posts = document.getElementsByTagName("li"), n = 0; n < posts.length; n++)
  20.   {
  21.     // Prevents errors from stopping the script.
  22.     if(posts[n].getAttribute("class") == null)
  23.       continue;
  24.  
  25.     // A list element that's not a post, so skip it.
  26.     if(posts[n].getAttribute("class").indexOf("postcontainer") <= -1)
  27.       continue;
  28.  
  29.     var post = posts[n];
  30.    
  31.     // Post doesn't contain "Title" or "Requester" which every HIT post should have. Hide it.
  32.     if(post.innerHTML.indexOf("Title") == -1 && post.innerHTML.indexOf("Requester") == -1)
  33.       post.style.display = "none";
  34.   }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement