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 http://www.torrentsmd.*/*
  9. // @include http://www.torrentsmoldova.*/*
  10. // @require http://code.jquery.com/jquery-2.1.1.min.js
  11. // ==/UserScript==
  12. ///////////////Cale scurta la Urmărire
  13. $(window).keydown(function (evt) {
  14. if (evt.target.tagName.toLowerCase() !== 'input' &&
  15. evt.target.tagName.toLowerCase() !== 'textarea' && evt.which == 85) {
  16. window.location.href="/watcher.php";
  17. }
  18. });
  19. ///////////////Cale scurta la Torrente
  20. $(window).keydown(function (evt) {
  21. if (evt.target.tagName.toLowerCase() !== 'input' &&
  22. evt.target.tagName.toLowerCase() !== 'textarea' && evt.which == 84) {
  23. window.location.href = "/browse.php";
  24. }
  25. });