HistoryNinja.psd1
# # Module manifest for module 'HistoryNinja' # # Generated by: Josh Kelley # # Generated on: 2/15/2023 # @{ # Version number of this module. ModuleVersion = '1.0.5' RootModule = 'HistoryNinja.psm1' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '4723903f-275e-4377-8814-8d2eb4d2cb99' # Author of this module Author = 'Josh Kelley' # Company or vendor of this module CompanyName = 'Unknown' # Copyright statement for this module Copyright = '(c) 2023 Josh Kelley. All rights reserved.' # Description of the functionality provided by this module Description = 'PowerShell module for retrieving and parsing browser history files.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.0' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @(@{ModuleName="PSSQLite"; ModuleVersion="1.1.0"; GUID="381f3394-9b8a-492e-94b4-b3aa9e775761"}) # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @( # History Ninja Functions 'Get-HistoryNinja' ) # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ Tags = @('HistoryNinja', 'BrowserHistory', 'Browser', 'History', 'Chrome', 'Firefox', 'Edge') LicenseUri = 'https://github.com/JCKelley-CYBR/HistoryNinja/blob/main/LICENSE' ProjectUri = 'https://github.com/JCKelley-CYBR/HistoryNinja' ReleaseNotes = 'https://github.com/JCKelley-CYBR/HistoryNinja/releases/tag/1.0.1' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module HelpInfoURI = 'https://github.com/JCKelley-CYBR/HistoryNinja#readme' } |