MTurkGrind.com Plus

Style tweaks and keyboard shortcuts for MTurkForum.com

目前为 2014-10-29 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name MTurkGrind.com Plus
  3. // @author Chet Manley
  4. // @version 0.1
  5. // @description Style tweaks and keyboard shortcuts for MTurkForum.com
  6. // @include http://www.mturkgrind.com/*
  7. // @require http://code.jquery.com/jquery-latest.min.js
  8. // @namespace https://greasyfork.org/users/6438
  9. // ==/UserScript==
  10.  
  11. // v0.1, 2013-10-19 Style tweaks and keyboard shortcuts on MTurkForum.com
  12. // ---------------------------------------------------------------------------
  13.  
  14. $(document).ready(function () {
  15. $('.postrow > .content').attr('style', 'font-size: 14px;');
  16. $('a.quickreply').hide().next().hide();
  17.  
  18. $(window).keyup(function (e) {
  19. if (!$('input, textarea').is(':focus')) {
  20. var key = (e.keyCode ? e.keyCode : e.which);
  21. switch (key) {
  22. case 37: // Left arrow - Previous page
  23. if ($('span.prev_next a[rel="prev"]').attr('href')) {
  24. window.location.href = $('span.prev_next a[rel="prev"]').attr('href');
  25. }
  26. break;
  27. case 39: // Right arrow - Next page
  28. if ($('span.prev_next a[rel="next"]').attr('href')) {
  29. window.location.href = $('span.prev_next a[rel="next"]').attr('href');
  30. }
  31. break;
  32. case 73: // I - Inbox
  33. window.location.href = 'http://www.mturkgrind.com/private.php';
  34. break;
  35. case 82: // R - Start a reply
  36. $('#cke_contents_vB_Editor_QR_editor > textarea').focus();
  37. break;
  38. case 83: // S - Settings
  39. window.location.href = 'http://www.mturkgrind.com/usercp.php';
  40. break;
  41. default:
  42. break;
  43. }
  44. }
  45. });
  46. });