BookmarkBackupTool.psd1
|
# # Module manifest for module 'BookmarkBackupTool' # # Generated by: Jesus M. Ayala # # Generated on: 10/25/2025 # @{ # Script module or binary module file associated with this manifest. RootModule = 'BookmarkBackupTool.psm1' # Version number of this module. ModuleVersion = '5.0.0' # Supported PSEditions CompatiblePSEditions = @('Desktop','Core') # ID used to uniquely identify this module GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890' # Author of this module Author = 'Jesus M. Ayala' # Company or vendor of this module CompanyName = 'Ayala Solutions' # Copyright statement for this module Copyright = '(c) 2025 Jesus M. Ayala. All rights reserved. MIT License.' # Description of the functionality provided by this module Description = 'Advanced bookmark backup and restore tool for Chrome, Edge, and Firefox browsers with comprehensive features including GUI, CLI, scheduling, and safety mechanisms.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Functions to export from this module FunctionsToExport = @( 'Export-Bookmarks','Import-Bookmarks','Get-HomeSharePath', 'Test-BrowserInstalled','Test-BrowserRunning','Get-BrowserProfiles', 'Backup-ExistingBookmarks','Show-BookmarkGUI', 'New-BookmarkScheduledTask','Remove-BookmarkScheduledTask', 'Get-BookmarkConfiguration','Set-BookmarkConfiguration', 'Test-BookmarkPrerequisites' ) # Cmdlets to export from this module CmdletsToExport = @() # Aliases to export from this module AliasesToExport = @( 'Export-BrowserBookmarks','Import-BrowserBookmarks', 'Backup-Bookmarks','Restore-Bookmarks' ) PrivateData = @{ PSData = @{ # Tags help with discovery in the Gallery Tags = @('Bookmarks','Backup','Chrome','Edge','Firefox','Browser','Restore','GUI') # Use a valid, public URL for the license (MIT). LicenseUri = 'https://opensource.org/license/mit/' # PSResourceGet requires a non-empty ProjectUri; use a valid public URL. # (Swap this to your repo later, e.g. https://github.com/hov172/PS-Bookmark-Backup-Tool) ProjectUri = 'https://www.powershellgallery.com/' # Optional icon removed for now to avoid invalid/404 checks by the Gallery. # You can add IconUri later once you have a public image URL that returns image/*. ReleaseNotes = 'Initial 5.0.0 release' } } } |