Google Chrome Canary 24.0.1300

This commit is contained in:
Iristyle
2012-10-18 02:43:51 -04:00
parent 30f4955043
commit 823a2bb908
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>GoogleChrome.Canary</id>
<title>Google Chrome Canary Web Browser</title>
<version>24.0.1300.0</version>
<authors>Google</authors>
<owners>Ethan J Brown</owners>
<summary>Google Chrome Canary has the newest of the new Chrome features.</summary>
<description>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.
</description>
<projectUrl>https://tools.google.com/dlpage/chromesxs</projectUrl>
<tags>google chrome web browser html5</tags>
<licenseUrl>https://www.google.com/chrome/intl/en/eula_text.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/GoogleChrome.Canary/GoogleChrome.Canary.png</iconUrl>
<releaseNotes></releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -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
}