Add 2 websites

This commit is contained in:
Markus Fleschutz
2021-11-29 21:45:02 +01:00
parent 7e6c942c1a
commit 304d2fc265
3 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the IPFS website
.DESCRIPTION
This script launches the Web browser with the IPFS website.
.EXAMPLE
PS> ./open-ipfs-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://ipfs.io/"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens the Snap Store website
.DESCRIPTION
This script launches the Web browser with the Snap Store website.
.EXAMPLE
PS> ./open-snap-store-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://snapcraft.io/store"
exit 0 # success