Skip to content

PowerShellLibrary/CRX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published