Module for downloading CRX (extension package) for Chromium-based browsers.
To use the CRX module, you need to install it from the PowerShell Gallery and then import it into your PowerShell session.
Install-Module -Name CRX
Import-Module -Name CRX
Note
Latest stable chrome version is hardcoded in $Global:LatestStableChromeVersion
by default
You can update it manually or use -ArgumentList
during module import so the latest version will be automatically fetched from https://chromiumdash.appspot.com
Import-Module CRX -ArgumentList $true
Downloads the CRX file for a specified extension.
Get-CRX -ExtensionId "[EXTENSION_ID]"
Check if an update is available for a specific extension
Test-CRXUpdateAvailable -ExtensionId "[EXTENSION_ID]"
Get update information for a specific extension
Get-CRXUpdateInfo -ExtensionId "[EXTENSION_ID]"