JavaScript erkennen, ob Browser nicht Google Chrome ist

if(!!window.chrome !== true){
	alert("Please use Google Chrome to access this site");
}
hirohito