0

how to create a chrome extension to get the number of installed plug-ins on my Browser? Hello Everybody, I wanna create a google chrome extension which gives me the total number of installed plug-ins on my browser. i am new in this developing field. where can i learn the advanced level javascript code to develop my skill. please help me. thanks in advance.

kazinayem2011
  • 348
  • 6
  • 20

1 Answers1

0

You can utilize navigator.plugins

[].forEach.call(navigator.plugins, function(plugin,index) {
  console.log(index, plugin.name, plugin.filename, plugin.description)
})
guest271314
  • 1
  • 15
  • 104
  • 177