tmd shortcuts

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

目前为 2015-03-03 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name tmd shortcuts
  3. // @namespace http://your.homepage/
  4. // @version 0.4
  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.1.min.js
  12. // ==/UserScript==
  13. ///////////////Cale scurta la Urmărire
  14. $(window).keydown(function (evt) {
  15. if (evt.target.tagName.toLowerCase() !== 'input' &&
  16. evt.target.tagName.toLowerCase() !== 'textarea' && evt.which == 85) {
  17. window.location.href="/watcher.php";
  18. }
  19. });
  20. ///////////////Cale scurta la Torrente
  21. $(window).keydown(function (evt) {
  22. if (evt.target.tagName.toLowerCase() !== 'input' &&
  23. evt.target.tagName.toLowerCase() !== 'textarea' && evt.which == 84) {
  24. window.location.href = "/browse.php";
  25. }
  26. });