How is it possible to get the clients computer name via javascript in the chrome browser? Using the IE it is possible using ActiveX
var network = new ActiveXObject('WScript.Network');
var clientName = network.computerName;
Is there a way to achive this in google chrome without forcing the client to install any plugin?