Skip to content Skip to sidebar Skip to footer

Detecting Programmatically Whether Addon Installed On Firefox

I would like to know 'How can we detect whether an addon/extension is installed on Mozilla Browser from our application? If suppose someone uninstalls it directly from the browser,

Solution 1:

There is no direct method to check if an add-on is installed or not. This question was also asked here before. Please see. How to check with Javascript if a Firefox Add-on / Extension is installed

If it's your own add-on then you can write some custom javascript method to try to communicate with your add-on and then display alert accordingly.

Perhaps you can find something at window.navigator.plugins?

Post a Comment for "Detecting Programmatically Whether Addon Installed On Firefox"