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.
Asked
Active
Viewed 54 times
1 Answers
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
-
@KaziNayem _"but i am not clear."_ Can you describe what is not clear? – guest271314 Jun 23 '16 at 06:50
-
actually i didn't understand your code. could you please give me in a brief... i'm totally new in plug-ins development. i can't seek tutorial which can help me... – kazinayem2011 Jun 23 '16 at 08:09
-
**it's working. thanks a lot** but i wanted to know that this code will work as a extension. how can i implement this code as chrome extension. @guest271314 – kazinayem2011 Jun 23 '16 at 09:33
-
@KaziNayem See https://developer.chrome.com/extensions/getstarted – guest271314 Jun 23 '16 at 13:37