From 304d2fc2658a573b6f8c1cc8704b720836400acc Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 29 Nov 2021 21:45:02 +0100 Subject: [PATCH] Add 2 websites --- Docs/VoiceControl.md | 2 +- Scripts/open-ipfs-website.ps1 | 15 +++++++++++++++ Scripts/open-snap-store-website.ps1 | 15 +++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 Scripts/open-ipfs-website.ps1 create mode 100644 Scripts/open-snap-store-website.ps1 diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index bdf89687..d1d9891d 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -49,7 +49,7 @@ Computer, open `name` folder Computer, open `name` website ----------------------------- * launches the default Web browser with the given website. -* replace `name` by: "Amazon", "Baidu", "BBC", "BitBucket", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "Flipboard", "FourSquare", "GitHub", "HRworks", "Instagram", "Microsoft", "NASA", "NBC", "Notepad", "Outdoor Active", "PayPal", "Pinterest", "Pixabay", "Slashdot", "Starbucks", "Tesla", "TikTok", "Topo Map", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Windy", "Wikipedia", "Wired", "Wolfram Alpha", "Yahoo", or "YouTube". +* replace `name` by: "Amazon", "Baidu", "BBC", "BitBucket", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "Flipboard", "FourSquare", "GitHub", "HRworks", "Instagram", "IPFS", "Microsoft", "NASA", "NBC", "Notepad", "Outdoor Active", "PayPal", "Pinterest", "Pixabay", "Slashdot", "Snap Store", "Starbucks", "Tesla", "TikTok", "Topo Map", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Windy", "Wikipedia", "Wired", "Wolfram Alpha", "Yahoo", or "YouTube". * when finished say: *Close tab* or: "Computer, close `name` browser" to close the Web browser. diff --git a/Scripts/open-ipfs-website.ps1 b/Scripts/open-ipfs-website.ps1 new file mode 100644 index 00000000..a4104bbd --- /dev/null +++ b/Scripts/open-ipfs-website.ps1 @@ -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 diff --git a/Scripts/open-snap-store-website.ps1 b/Scripts/open-snap-store-website.ps1 new file mode 100644 index 00000000..ab382404 --- /dev/null +++ b/Scripts/open-snap-store-website.ps1 @@ -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