Created
March 4, 2016 07:51
-
-
Save rodvan/ba9d5c1981c03d338ffc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.write('<P>'+navigator.appName+'</P>'); | |
document.write('<P>'+navigator.appVersion+'</P>'); | |
document.write('<P>'+navigator.platform+'</P>'); | |
document.write('<P>'+navigator.userAgent+'</P>'); | |
var plugins = navigator.plugins; | |
var mimeTypes = navigator.mimeTypes | |
document.write('<P>'); | |
for (i=0;i<plugins.length;i++) { | |
var plugin = plugins[i]; | |
document.write('<B>'+plugin.name+'</B><BR>'); | |
document.write(plugin.filename+' - '+plugin.description+'<BR>'); | |
for(j=0;j<plugin.length;j++) { | |
var mimetype = plugin[j]; | |
document.write(mimetype.type); | |
if(mimetype.description) { | |
document.write(' : '+mimetype.description); | |
} | |
if(mimetype.suffixes) { | |
document.write(' - extentions: '+mimetype.suffixes); | |
} | |
document.write('<BR>'); | |
} | |
} | |
document.write('</P>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment