tmd shortcuts

press U - for Urmarire link, T - for Torrents link

  1. // ==UserScript==
  2. // @name tmd shortcuts
  3. // @namespace http://your.homepage/
  4. // @version 0.6
  5. // @description press U - for Urmarire link, T - for Torrents link
  6. // @author drakulaboy
  7. // @icon http://i.imgur.com/uShqmkR.png
  8. // @include *.torrentsmd.*/*
  9. // @include *.torrentsmd.me/*
  10. // @include *.torrentsmoldova.*/*
  11. // @require http://code.jquery.com/jquery-2.1.4.min.js
  12. // @grant none
  13. // ==/UserScript==
  14. this.$ = this.jQuery = jQuery.noConflict(true);
  15. ///////////////Cale scurta la Urmărire
  16. $(window).keydown(function (evt) {
  17. if (evt.target.tagName.toLowerCase() !== 'input' &&
  18. evt.target.tagName.toLowerCase() !== 'textarea' && evt.which == 85) {
  19. window.location.href="/watcher.php";
  20. }
  21. });
  22. ///////////////Cale scurta la Torrente
  23. $(window).keydown(function (evt) {
  24. if (evt.target.tagName.toLowerCase() !== 'input' &&
  25. evt.target.tagName.toLowerCase() !== 'textarea' && evt.which == 84) {
  26. window.location.href = "/browse.php";
  27. }
  28. });