-
Notifications
You must be signed in to change notification settings - Fork 9
/
SecretManagement.Chromium.psd1
59 lines (49 loc) · 3.97 KB
/
SecretManagement.Chromium.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Module manifest for module 'SecretsManagement.KeePass'
#
# Generated by: jgrote
#
# Generated on: 2/10/2020
#
@{
# Script module or binary module file associated with this manifest.
RootModule = 'SecretManagement.Chromium.psm1'
# Version number of this module.
ModuleVersion = '0.0.9.1'
# Supported PSEditions
CompatiblePSEditions = @('Core')
# ID used to uniquely identify this module
GUID = '14f945da-777e-4e2a-9c79-b59287d19478'
# Author of this module
Author = 'Justin Grote'
# Copyright statement for this module
Copyright = '(c) 2020 Justin Grote. All rights reserved.'
# Description of the functionality provided by this module
Description = 'A cross-platform Chromium (Edge/Chrome) Secret Management vault extension. See the README.MD in the module for more details.'
# Modules that must be imported into the global environment prior to importing this module
NestedModules = @(
'./SecretManagement.Chromium.Extension'
)
RequiredModules = @(
@{
ModuleName = 'ReallySimpleDatabase'
RequiredVersion = '1.0.0'
}
@{
ModuleName = 'Microsoft.Powershell.SecretManagement'
ModuleVersion = '0.0.9'
}
)
PowershellVersion = '7.0'
FunctionsToExport = @('Register-ChromiumSecretVault','Get-ChromiumError')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = 'SecretManagement', 'Chromium', 'Chrome','Edge','SecretVault', 'Vault', 'Secret','VaultExtension'
ProjectUri = 'https://www.github.com/JustinGrote/SecretManagement.Chromium'
IconUri = 'https://raw.githubusercontent.com/JustinGrote/SecretManagement.Chromium/main/images/logo.png'
}
}
}