Youtube Middle Click Search

Middle clicking the search on youtube opens the results in a new tab

当前为 2014-10-26 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Youtube Middle Click Search
  3. // @version 1.0
  4. // @description Middle clicking the search on youtube opens the results in a new tab
  5. // @include http*://www.youtube.com*
  6. // @namespace https://greasyfork.org/users/649
  7. // ==/UserScript==
  8.  
  9. document.querySelectorAll("#masthead-search button")[0].setAttribute("onclick", "if (_gel('masthead-search-term').value == '') return false;var evt = window.event || arguments.callee.caller.arguments[0];if (evt.which == 2) document.getElementById('masthead-search').setAttribute('target', '_blank');_gel('masthead-search').submit();return false;;return true");