googleusercontent

Google image get full resolution

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         googleusercontent
// @namespace    http://qqboxy.blogspot.com/
// @version      0.0.2
// @description  Google image get full resolution
// @author	     QQBoxy
// @match        http://*.googleusercontent.com/*
// @match        https://*.googleusercontent.com/*
// @grant        none
// ==/UserScript==

(function(){
	var URL = document.URL;
	var PARAM = URL.match(/(w\d+\-h\d+)((?:\-[rw|p|no]+)+)/);
	if(PARAM) {
		URL = URL.replace(PARAM[0],"s0");
		document.location = URL;
	}
})();