googleblog.blogspot.com — As you may have read in the blogosphere, we hit "send" a bit early on a comic book introducing our new open source browser, Google Chrome. We will be launching the beta version of Google Chrome tomorrow in more than 100 countries.
Sep 1, 2008 View in Crawl 4
tekismSep 2, 2008
I wrote a little c# snippet to testing the Chrome site to see if its up, yes i know I it maxes out after 5000 tries (you will need System.Web and System.Windows.Forms)using System;using System.Net;using System.Windows.Forms;namespace Test404{ internal class Program { private static void Main(string[] args) { for (int x = 0; x < 5000; x++) { HttpWebRequest req = WebRequest.Create("<a class="user" href="http://www.google.com/chrome">http://www.google.com/chrome</a>") as HttpWebRequest; try { HttpWebResponse res = (HttpWebResponse) req.GetResponse(); HttpStatusCode status = res.StatusCode; if (status != HttpStatusCode.NotFound) { MessageBox.Show("Google Chrome is live!"); break; } } catch (WebException ex) { HttpWebResponse res = (HttpWebResponse) ex.Response; if(res.StatusCode == HttpStatusCode.NotFound) Console.WriteLine("Chrome still not live...."); } System.Threading.Thread.Sleep(10000); } } }}
chromebrowserSep 2, 2008
I made this page to collect all the information about the new browser <a class="user" href="http://www.chromebrowserdownload.info">http://www.chromebrowserdownload.info</a>Enjoy it !
neibySep 3, 2008
In case anyone sees my post above, that is the wrong link. The correct link is simply:<a class="user" href="http://www.google.com/chrome">http://www.google.com/chrome</a>
gannSep 3, 2008
Will there be adblock for chrome? But most of the ads adblock block are from Google!
Closed AccountSep 3, 2008
Nope. BSD. However, for something like this, I'd say BSD is definitely the better choice. Since we all want Chrome's innovations to become standard across all web browsers so that developers can take advantage of them (read the comic), it would be counterproductive to leave proprietary browsers out in the cold, even if there is that whole "OMGG NOO INTERNET EXPLORERZ MUST DEAD!!!!!!!!!!!!!!111" feeling.
navicertsSep 3, 2008
This account has been closed by the user
kishosinghSep 5, 2008
Yes, and now it is on Google home page if you want to download : <a class="user" href="http://digg.com/tech_news/Google_Chrome_User_Reviews_and_Download_Chrome_Browser">http://digg.com/tech_news/Google_Chrome_User_Revie ...</a>
sifumokungSep 18, 2008
You are an idiot.