MTurkGrind.com Plus

Style tweaks and keyboard shortcuts for MTurkGrind.com forum.

  1. // ==UserScript==
  2. // @name MTurkGrind.com Plus
  3. // @author Chet Manley
  4. // @version 0.2.1.1x
  5. // @description Style tweaks and keyboard shortcuts for MTurkGrind.com forum.
  6. // @include http://www.mturkgrind.com/*
  7. // @include http://mturkgrind.com/*
  8. // @require http://code.jquery.com/jquery-latest.min.js
  9. // @grant GM_log
  10. // @namespace https://greasyfork.org/users/6438
  11. // ==/UserScript==
  12.  
  13. // v0.2x, 2015-01-17: updates by clickhappier for MTG migration from vbulletin to xenforo
  14.  
  15. // v0.1, 2013-10-19 Style tweaks and keyboard shortcuts on MTurkGrind.com
  16. // ---------------------------------------------------------------------------
  17.  
  18. $(document).ready(function () {
  19. $('.messageText').attr('style', 'font-size: 15px;');
  20. // $('a.quickreply').hide().next().hide();
  21.  
  22. $(window).keyup(function (e) {
  23. if (!$('input, textarea').is(':focus')) {
  24. var key = (e.keyCode ? e.keyCode : e.which);
  25. switch (key) {
  26. case 37: // Left arrow - Previous page
  27. if ($('div.PageNav > nav > a:contains("Prev")').first().attr('href')) {
  28. window.location.href = $('div.PageNav > nav > a:contains("Prev")').first().attr('href');
  29. }
  30. break;
  31. case 39: // Right arrow - Next page
  32. if ($('div.PageNav > nav > a:contains("Next")').first().attr('href')) {
  33. window.location.href = $('div.PageNav > nav > a:contains("Next")').first().attr('href');
  34. }
  35. break;
  36. case 73: // I - Inbox
  37. window.location.href = 'http://www.mturkgrind.com/conversations/';
  38. break;
  39. case 82: // R - Start a reply
  40. $('html, body').animate({ scrollTop: $("form#QuickReply").offset().top }, 100);
  41. break;
  42. case 83: // S - Settings
  43. window.location.href = 'http://www.mturkgrind.com/account/';
  44. break;
  45. default:
  46. break;
  47. }
  48. }
  49. });
  50. });