Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

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.