Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Allowed Extension is getting removed.

  • 2 odpovede
  • 0 má tento problém
  • 14 zobrazení
  • Posledná odpoveď od 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.

Vybrané riešenie

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.

Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (2)

more options

Vybrané riešenie

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.