Hello,
I am trying to create a deny all & white list only gpo for Firefox extensions.
I am using the gpo; Computer Configuration/Policies/Administrative Templates/M… (read more)
Hello,
I am trying to create a deny all & white list only gpo for Firefox extensions.
I am using the gpo; Computer Configuration/Policies/Administrative Templates/Mozilla/Firefox/Extensions/Extension Management
I started out simple using a template which worked.
{
"*": {
"blocked_install_message": "Your Company Blocked Message",
"installation_mode": "blocked"
},
"uBlock0@raymondhill.net": {
"installation_mode": "allowed"
}
}
However, when I tried to add in more allowed extensions it now longer worked and was able to install any extension.
{
"*": {
"blocked_install_message": "Your Company Blocked Message",
"installation_mode": "blocked"
},
"uBlock0@raymondhill.net": {
"installation_mode": "allowed"
},
"querymoid@kaply.com": {
"installation_mode": "allowed"
}
}