Ankit Rustagi
Ankit Rustagi

Reputation: 5637

Detect all extensions in browser (Javascript)

I need to detect all extensions installed in the browser, like adblock or User-Agent switcher.

navigator.plugins

returns a list of all plugins, do we have something similar to detect all extensions installed (through Javascript?) ?

Upvotes: 1

Views: 418

Answers (1)

Quentin
Quentin

Reputation: 943214

No.

Plugins are designed for webpages to use.

Extensions are designed to use webpages.

A specific extension might inject something into a page that you can detect, but there is nothing generic.

Upvotes: 2

Related Questions