搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Allowed Extension is getting removed.

  • 2 个回答
  • 0 人有此问题
  • 14 次查看
  • 最后回复者为 bluekind12

more options

Hello, I am trying to manage Firefox Extension using "Extension Setting" via Intune. Source: https://github.com/mozilla/policy-templates/blob/master/README.md#extensionsettings I am testing below JSON for testing. <enabled/> <data id="ExtensionSettings" value=' {

 "*": {
   "blocked_install_message": "Not Allowed contact HelpDesk.",
   "install_sources": ["https://www.example.com/*"],
   "installation_mode": "blocked",
   "allowed_types": ["extension"]
 },
 "uBlock0@raymondhill.net": {
   "installation_mode": "force_installed",
   "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
 },
   "https-everywhere@eff.org": {
   "installation_mode": "allowed"
 },
 "jetpack-extension@dashlane.com": {
   "installation_mode": "allowed",
   "install_url": "https://prod.extensions.dashlane.com/downloads/firefox/dashlane-latest-fx.xpi"
 }

}'/>


When deployed to test devices, all extension previously installed get removed and Ublock get installed, seem like working as intended but when I try to install any "Allowed" I get the block installed message. I see no error in "about:policies". I don't know where else to look for why its getting blocked?

Any help will be much appreciated.

Hello, I am trying to manage Firefox Extension using "Extension Setting" via Intune. Source: https://github.com/mozilla/policy-templates/blob/master/README.md#extensionsettings I am testing below JSON for testing. ''<enabled/> <data id="ExtensionSettings" value=' { "*": { "blocked_install_message": "Not Allowed contact HelpDesk.", "install_sources": ["https://www.example.com/*"], "installation_mode": "blocked", "allowed_types": ["extension"] }, "uBlock0@raymondhill.net": { "installation_mode": "force_installed", "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" }, "https-everywhere@eff.org": { "installation_mode": "allowed" }, "jetpack-extension@dashlane.com": { "installation_mode": "allowed", "install_url": "https://prod.extensions.dashlane.com/downloads/firefox/dashlane-latest-fx.xpi" } }'/>'' When deployed to test devices, all extension previously installed get removed and Ublock get installed, seem like working as intended but when I try to install any "Allowed" I get the block installed message. I see no error in "about:policies". I don't know where else to look for why its getting blocked? Any help will be much appreciated.

被采纳的解决方案

You need to remove the line that says:

"install_sources": ["https://www.example.com/*"],

This makes installs only available from that website.

Also, FYI, you don't need the line

"install_url": "https://prod.extensions.dashlane.com/downloads/firefox/dashlane-latest-fx.xpi"

Since the user will be installing from the dashlane website.

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

You need to remove the line that says:

"install_sources": ["https://www.example.com/*"],

This makes installs only available from that website.

Also, FYI, you don't need the line

"install_url": "https://prod.extensions.dashlane.com/downloads/firefox/dashlane-latest-fx.xpi"

Since the user will be installing from the dashlane website.

more options

Thank you that fixed my issue.