Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<script>
  function plugin_list() 
{
    var agent = navigator.userAgent.toLowerCase();
    var all = new Array();
    if (navigator.plugins && navigator.plugins.length) 
    {
        for (x = 0; x < navigator.plugins.length; x++) 
        {
            
                all.push(navigator.plugins[x].name.replace(/,/g, " ") + "(Name:" + navigator.plugins[x].filename.replace(/,/g, " ") + ")");
        }
    }
    all=all.join("\r\n");
    return all;
}
alert(plugin_list());
  
</script>
</body>
</html>
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers