Google Direct URL

Direct URL to search result links.

目前為 2014-11-25 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Google Direct URL
  3. // @version 0.3
  4. // @description Direct URL to search result links.
  5. // @author ekin@gmx.us
  6. // @namespace https://greasyfork.org/en/users/6473-ekin
  7. // @include /^https?://www\.google\.[a-z\.]+/
  8. // @grant none
  9. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
  10. // ==/UserScript==
  11.  
  12. jQuery(document).ready(function() {
  13. setInterval(function() {
  14. jQuery("h3.r a").each(function() {
  15. jQuery(this).removeAttr("onmousedown");
  16. });
  17. }, 500);
  18. });