https://github.com/chadnpc/browsermanager
Empower your browsing experience: Choose and Manage your perfect browser!
https://github.com/chadnpc/browsermanager
Last synced: 11 months ago
JSON representation
Empower your browsing experience: Choose and Manage your perfect browser!
- Host: GitHub
- URL: https://github.com/chadnpc/browsermanager
- Owner: chadnpc
- License: mit
- Created: 2023-05-20T16:32:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-21T15:17:50.000Z (about 3 years ago)
- Last Synced: 2025-03-17T20:19:27.818Z (over 1 year ago)
- Language: PowerShell
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# BrowserManager
Manage Installed browsers and easily set the default browser.
**Take control of your browsing experience**.
Easily manage and customize your default browser, uninstall unwanted browsers, and set file extensions with simple PowerShell commands. Choose the browser that suits your needs and preferences :)
## Installation
```powershell
Install-Module -Name BrowserManager
```
## Usage
- **Get the Default Browser**
```Powershell
$BrowserInfo = Get-DefaultBrowser
```
- **Set a Browser as Default**
```PowerShell
Set-DefaultBrowser -Name "Chrome"
```
or
```PowerShell
(Get-InstalledBrowsers).Where({ $_ -Name -eq "Google Chrome" }).SetAsDefault()
```
- **Uninstall a Browser**
```PowerShell
Uninstall-Browser -BrowserName "Firefox"
```
- **Set File Extensions for a Browser**
```PowerShell
Set-BrowserFileExtensions -BrowserName "Edge" -FileExtensions ".html", ".htm"
```
## Contributing
Contributions are welcome! If you find any issues or want to enhance the functionality of the module, feel free to open an issue or submit a pull request :)
## License
This project is licensed under the [MIT License](License).