Direct URL to search result links.
目前為
// ==UserScript== // @name Google Direct URL // @version 0.2 // @description Direct URL to search result links. // @author [email protected] // @namespace https://greasyfork.org/en/users/6473-ekin // @include /^https?://www\.google\.[a-z]+/[webhp|search]+/ // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js // ==/UserScript== jQuery(document).ready(function() { setInterval(function() { jQuery("h3.r a").each(function() { jQuery(this).removeAttr("onmousedown"); }); }, 500); });