diff --git a/GoogleChrome.Canary/GoogleChrome.Canary.nuspec b/GoogleChrome.Canary/GoogleChrome.Canary.nuspec new file mode 100644 index 0000000..979b1c2 --- /dev/null +++ b/GoogleChrome.Canary/GoogleChrome.Canary.nuspec @@ -0,0 +1,29 @@ + + + + GoogleChrome.Canary + Google Chrome Canary Web Browser + 24.0.1300.0 + Google + Ethan J Brown + Google Chrome Canary has the newest of the new Chrome features. + Not for the faint of heart + Canary is designed for developers and early adopters, and can sometimes break down completely. + Nightly updates + Canary changes almost every day. + Side-by-side install + Run Canary and Chrome Stable at the same time. + + Note that Chrome auto-updates itself after an initial install. + + https://tools.google.com/dlpage/chromesxs + google chrome web browser html5 + https://www.google.com/chrome/intl/en/eula_text.html + false + https://github.com/Iristyle/ChocolateyPackages/raw/master/GoogleChrome.Canary/GoogleChrome.Canary.png + + + + + + diff --git a/GoogleChrome.Canary/GoogleChrome.Canary.png b/GoogleChrome.Canary/GoogleChrome.Canary.png new file mode 100644 index 0000000..954b9db Binary files /dev/null and b/GoogleChrome.Canary/GoogleChrome.Canary.png differ diff --git a/GoogleChrome.Canary/tools/chocolateyInstall.ps1 b/GoogleChrome.Canary/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..09080d2 --- /dev/null +++ b/GoogleChrome.Canary/tools/chocolateyInstall.ps1 @@ -0,0 +1,13 @@ +$package = 'Chrome.Canary' + +try { + + $url = 'https://dl.google.com/tag/s/appguid%3D%7B4ea16ac7-fd5a-47c3-875b-dbf4a2008c20%7D%26iid%3D%7B0281A7E2-6043-D983-8BBA-7FD622493C9D%7D%26lang%3Den%26browser%3D4%26usagestats%3D1%26appname%3DGoogle%2520Chrome%2520Canary%26needsadmin%3Dfalse/update2/installers/ChromeSetup.exe' + + Install-ChocolateyPackage 'ChromeSetup' 'exe' '' $url + + Write-ChocolateySuccess $package +} catch { + Write-ChocolateyFailure $package "$($_.Exception.Message)" + throw +}