Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Some addons are automatically disabled?

  • 3 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par guigs

more options

Sometimes it happens tha my Microsoft Office 2013 plugin are disabled. I need tgat plugins's for SharePoint Online Document editing and if plugin is not enabled then document is downloaded insted od opened in clinet Office application.

Please if someone could help me why is that happening? Is any way to check when that plugin is disabled? Is any way to check that setting from JavaScript code?

Sometimes it happens tha my Microsoft Office 2013 plugin are disabled. I need tgat plugins's for SharePoint Online Document editing and if plugin is not enabled then document is downloaded insted od opened in clinet Office application. Please if someone could help me why is that happening? Is any way to check when that plugin is disabled? Is any way to check that setting from JavaScript code?

Toutes les réponses (3)

more options

Sometimes plugins are disabled after an update, however I am not entirely sure what exactly caused it to disable.

Its possible to check when it is is disabled from the plugins page. With javascript, this would require a developer.

more options

Hello

Thanks for answer. I currently solve my problems with javascript code block where i check if plugin is installed or enabled.

Here is the code: if (navigator.plugins['Microsoft Office 2013'] === undefined) {

    //here put some code to notify user that plugin is disabled
  }
more options

Got it, thank you for clarifying. I know that some addons are disabled if they are considered incompatible with the newer version of Firefox. How to renable them

I did some search on the autoupdater for what checks actually happen: http://lxr.mozilla.org/mozilla-centra.../sdk.js#5442