Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

Some addons are automatically disabled?

  • 3 отговора
  • 1 има този проблем
  • 1 изглед
  • Последен отговор от 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?

Всички отговори (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