Last active
August 29, 2015 14:22
-
-
Save OsandaMalith/1362220ebeb8387ba838 to your computer and use it in GitHub Desktop.
Displays all the installed browser plugin along with the file names. Tested on Chrome and Firefox.
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
// Paste this in the JS Console - Tested with Chrome and Firefox | |
for(i = 0; i < navigator.plugins.length; i++) console.log(navigator.plugins[i].name + ' :: ' + navigator.plugins[i].filename); | |
// Printing as HTML - works only with Chrome | |
for(i = 0; i < navigator.plugins.length; i++) document.write(navigator.plugins[i].name + ' :: ' + navigator.plugins[i].filename + '<br>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment