#keywords JavaScript,Plugin for Mozilla 계열 브라우저 {{{#!gcode var L = navigator.plugins.length; document.write( L.toString() + " Plugin(s)" ); document.write( "
" ); document.write( "Name | Filename | description" ); document.write( "
" ); for(var i = 0; i < L; i++) { document.write( navigator.plugins[i].name ); document.write( " | " ); document.write( navigator.plugins[i].filename ); document.write(" | "); document.write( navigator.plugins[i].description ); document.write( " | " ); document.write( navigator.plugins[i].version ); document.write( "
" ); } }}} ---- Example {{{ 26 Plugin(s) Name | Filename | description Shockwave Flash | pepflashplayer.dll | Shockwave Flash 11.6 r602 | undefined Chrome Remote Desktop Viewer | internal-remoting-viewer | This plugin allows you to securely access other computers that have been shared with you. To use this plugin you must first install the Chrome Remote Desktop webapp. | undefined Native Client | ppGoogleNaClPluginChrome.dll | | undefined Chrome PDF Viewer | pdf.dll | | undefined Adobe Acrobat | nppdf32.dll | Adobe PDF Plug-In For Firefox and Netscape 10.1.6 | undefined Microsoft Office 2010 | NPAUTHZ.DLL | Office Authorization plug-in for NPAPI browsers | undefined Microsoft Office 2010 | NPSPWRAP.DLL | The plug-in allows you to open and edit files using Microsoft Office applications | undefined AhnLab Online Security | npaosmgr.dll | Aosmgr Plugin Module | undefined AhnLab Online Security Anti-keylogger | npmkd25sp.dll | AhnLab Online Security | undefined nProtect Netizen v5.5 Install. | npenkOBInstall5.dll | npenkOBInstall5 DLL | undefined NPI3GManager (c) Interezen. plugin | NPI3GManager.dll | I3G Security Manager. (c) Interezen. | undefined Java(TM) Platform SE 7 U17 | npjp2.dll | Next Generation Java Plug-in 10.17.2 for Mozilla browsers | undefined Silverlight Plug-In | npctrl.dll | 5.1.20125.0 | undefined SoftForum XecureWeb Control Plug-in | npxwebplugin.dll | npxwebplugin v.7.2.5.8 | undefined SoftForum XecureWeb File Control Plug-in | npxwebplugin_file.dll | npxwebplugin_file v.7.2.5.8 | undefined Softforum XecureWeb Unified Plug-in | npXecureMacuxNPPlugin.dll | XecureWeb Unified Plug-in for Mozilla browsers v1.0.4.3 | undefined VLC Web Plugin | npvlc.dll | VLC media player Web Plugin 2.0.2 | undefined DelfinoPlugin | npdelfinoplugin.dll | WIZVERA Delfino 1.1.0.1 | undefined Veraport Mozilla Plugin | npveraport20.dll | Veraport Mozilla Plugin (2512) | undefined iTunes Application Detector | npitunes.dll | iTunes Detector Plug-in | undefined Google Update | npGoogleUpdate3.dll | Google Update | undefined ePageSafer MultiBrowser | npMAOnFPS_MultiBrowser.dll | MarkAny FPS Plugin | undefined Zettamedia Launcher | npZmLauncher.dll | Zettamedia Launcher Plugin | undefined npEfdsWPlugin | npEfdsWPlugin.dll | npEfdsWPlugin DLL | undefined Java Deployment Toolkit 7.0.170.2 | npDeployJava1.dll | NPRuntime Script Plug-in Library for Java(TM) Deploy | undefined TouchEn Key for Multi-Browser | npKeyPro.dll | TouchEn Key for Multi-Browser | undefined }}} ---- Running Real Code {{{#!html }}}