Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

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