Как вариант.
function getBrowser(){
var ua = navigator.userAgent;
if (ua.search(/Chrome/) > 0) return 'Google Chrome';
if (ua.search(/Firefox/) > 0) return 'FireFox';
if (ua.search(/Opera/) > 0) return 'Opera';
if (ua.search(/Safari/) > 0) return 'Safari';
if (ua.search(/MSIE/) > 0) return 'IE';
return 'Не определен';
}
if( getBrowser() == 'Google Chrome' ) {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'путь к таблице стилей';
document.head.appendChild(link);
}