Skip to content

Files

Latest commit

cd1287b · Jan 29, 2025

History

History
41 lines (31 loc) · 2.83 KB

README.md

File metadata and controls

41 lines (31 loc) · 2.83 KB

CRX

PowerShell Gallery License Build Status

Module for downloading CRX (extension package) for Chromium-based browsers.

How to Use

To use the CRX module, you need to install it from the PowerShell Gallery and then import it into your PowerShell session.

Installation

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

Example Usage

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]"