Google Direct URL

Direct URL to search result links.

Od 25.11.2014.. Pogledajte najnovija verzija.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
    
});