From 599b976ee83149fdd4d84fae4407a2ca2b4aa8b8 Mon Sep 17 00:00:00 2001 From: Ovais Rashid Date: Mon, 8 Jun 2026 15:38:37 -0400 Subject: [PATCH] Opera **Bug Reported/Enhancement:** Opera browser was not included in the extension registration logic, preventing extensions from being added through the script for Opera. **Resolution:** Added Opera-specific logic to support extension registration and enable extension deployment for Opera browsers. **What steps were changed in the content:** * Added Opera browser support to the extension registration logic. * Included the required Opera policy handling to allow extensions to be added successfully. * No changes were made to the deployment workflow or script parameters. --- docs/powershell/register-chromiumextension.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/powershell/register-chromiumextension.md b/docs/powershell/register-chromiumextension.md index 141044796..f94924483 100644 --- a/docs/powershell/register-chromiumextension.md +++ b/docs/powershell/register-chromiumextension.md @@ -9,7 +9,7 @@ tags: ['chrome', 'web-browser', 'windows'] draft: false unlisted: false last_update: - date: 2026-04-02 + date: 2026-06-08 --- ## Description @@ -43,7 +43,7 @@ This command will add uBlock Origin and Zoom Meetings to the registered extensio | Parameter | ValidateSet | Required | Default | Type | Description | | ----------------- | ----------- | --------- | --------- | --------- | ----------------------------------------- | | `ExtensionID` | | True | | String[] | Holds the URL ID values for the desired extensions to install. | -| `Target` | `Chromium`, `Chrome`, `Edge`, `Brave`, `Vivaldi` | False | Defaults to applying settings to all available targets | String[] | Designates the target browser to add the extension to. | +| `Target` | `Chromium`, `Chrome`, `Edge`, `Brave`, `Vivaldi`, `Opera` | False | Defaults to applying settings to all available targets | String[] | Designates the target browser to add the extension to. | ## Output @@ -54,6 +54,10 @@ The output will be logged in the following files: ## Changelog +### 2026-06-08 + +- Added Opera-specific logic to support extension registration and enable extension deployment for Opera browsers. + ### 2026-04-02 - Resolved an issue that prevented multiple extensions from being installed simultaneously