File tree 1 file changed +31
-0
lines changed
1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CRX
2
+ [](https://www.powershellgallery.com/packages/CRX)
3
+ [ ![ License] ( https://img.shields.io/badge/license-MIT-blue.svg?labelColor=373e45 )] ( LICENSE )
4
+ [ ![ Build Status] ( https://img.shields.io/github/actions/workflow/status/PowerShellLibrary/CRX/test.yml?branch=master&logo=github&labelColor=373e45&label=Pester )] ( https://github.com/PowerShellLibrary/CRX/actions/workflows/test.yml )
2
5
3
6
Module for downloading CRX (extension package) for Chromium-based browsers.
7
+
8
+
9
+ ## How to Use
10
+
11
+ To use the CRX module, you need to install it from the PowerShell Gallery and then import it into your PowerShell session.
12
+
13
+ ### Installation
14
+
15
+ ``` powershell
16
+ Install-Module -Name CRX
17
+ Import-Module -Name CRX
18
+ ```
19
+
20
+ ### Example Usage
21
+ ** Downloads the CRX file for a specified extension.**
22
+ ``` powershell
23
+ Get-CRX -ExtensionId "[EXTENSION_ID]"
24
+ ```
25
+
26
+ ** Check if an update is available for a specific extension**
27
+ ``` powershell
28
+ Test-CRXUpdateAvailable -ExtensionId "[EXTENSION_ID]"
29
+ ```
30
+
31
+ ** Get update information for a specific extension**
32
+ ``` powershell
33
+ Get-CRXUpdateInfo -ExtensionId "[EXTENSION_ID]"
34
+ ```
You can’t perform that action at this time.
0 commit comments