Función en PHP para saber si nuestros visitantes están usado Google Chrome.

<?php
function is_chrome(){
return(eregi("chrome", $_SERVER['HTTP_USER_AGENT']));
}

if(is_chrome()){
echo 'Tu estas usando el navegador Google Chrome.';
}
?>

Probado desde BitRepository