Google Chrome
From Wikipedia, the free encyclopedia
Main page of the English Wikipedia in Chrome 0.2 running on Windows Vista | |
Developed by | |
---|---|
Initial release | September 2, 2008 |
Stable release | none (n/a) [+/−] |
Preview release | 0.2.149.30 (18 September 2008 ) [+/−] |
Written in | C++ and Assembly |
OS | Microsoft Windows (XP SP2 and Vista); Mac OS X and Linux in development. |
Size | 8.43 MB[1] |
Available in | 43 languages |
Development status | Beta |
Type | Web browser |
License | BSD license (source code and Chromium executable), Google Chrome Terms of Service (Google Chrome executable) |
Website | http://www.google.com/chrome |
Google Chrome is an open source, free web browser developed by Google[2] that has about 1% share of browser market.[3] It was first released as a beta version for Microsoft Windows on 2 September 2008. The name is derived from the graphical user interface frame, or "chrome", of web browsers.
Chromium is the open source project behind Google Chrome, and is released under the BSD license.[4] It implements the same feature set, but has a slightly different logo.[5]
Contents |
History
Announcement
The release announcement was originally scheduled for 3 September 2008, and a comic by Scott McCloud was to be sent to journalists and bloggers explaining the features of and motivations for the new browser.[6] Copies intended for Europe were shipped early and German blogger Philipp Lenssen of Google Blogoscoped[7] made a scanned copy of the 38-page comic available on his website after receiving it on 1 September 2008.[8] Google subsequently made the comic available on Google Books and their site[9] and mentioned it on its official blog along with an explanation for the early release.[10]
Public release
The browser was first publicly released for Microsoft Windows (XP and later only) on 2 September 2008 in 43 languages, officially a beta version. Chrome quickly gained about 1% market share. Mac OS X and Linux versions are under development.[11][12][13][14]
On 2 September, a CNET news item[15] drew attention to a passage in the terms of service for the initial beta release, which seemed to grant to Google a license to all content transferred via the Chrome browser. The passage in question was inherited from the general Google terms of service.[16] On the same day, Google responded to this criticism by stating that the language used was borrowed from other products, and removed the passage in question from the Terms of Service.[17] Google noted that this change would "apply retroactively to all users who have downloaded Google Chrome."[18] There were subsequent concerns about the browser's use of an unusual tracking feature that sends information about visited websites back to Google. The company stated that this is only enabled when users opt in by checking the option "help make Google Chrome better by automatically sending usage statistics and crash reports to Google" when the browser is installed.[19]
The first release of Google Chrome passed the Acid1 and Acid2 tests. While it did not pass the Acid3 test, it scored 78 out of 100 required to pass the test. This is higher than both Internet Explorer 7 (14) and Firefox 3 (71), but lower than Opera (84).[20] When compared to development builds, Chrome scored lower than Firefox (85), Opera (99), and Safari (100), but still higher than Internet Explorer (21).[20]
Unofficial Chromium releases, workarounds and mod utilities
- On 15 September 2008, CodeWeavers released an unofficial bundle of a WINE derivative and Chromium Developer Build 21 for Linux and Mac OS X, which they dubbed "CrossOver Chromium".[21][22]
- An unofficial workaround for use with Windows 2000 was referenced on one of Chromium's issue discussion pages.[23]
- An unofficial patch was also released to fix a scrolling bug, which affected certain mouse software.[24]
- Iron is a release of Chromium software that explicitly disables the collection and transmission of usage information to Google which is optional within Chrome.[25]
Development
Primary design goals were improvements in security, speed, and stability compared to existing browsers. There also were extensive changes in the user interface.[9] Chrome was assembled from 26 different code libraries from Google and others from third parties such as Netscape.[26]
Security
Chrome periodically downloads updates of two blacklists (one for phishing and one for malware), and warns users when they attempt to visit a harmful site. This service is also made available for use by others via a free public API called "Google Safe Browsing API". Google notifies the owners of listed sites who may not be aware of the presence of the harmful software.[9]
Chrome will typically allocate each tab to fit into its own process to "prevent malware from installing itself" or "using what happens in one tab to affect what happens in another", however the actual process allocation model is more complex.[27] Following the principle of least privilege, each process is stripped of its rights and can compute, but can not write files or read from sensitive areas (e.g. documents, desktop)—this is similar to the "Protected Mode" that is used by Internet Explorer 7 on Windows Vista. The Sandbox Team is said to have "taken this existing process boundary and made it into a jail";[28] for example, malicious software running in one tab is unable to sniff credit card numbers, interact with the mouse, or tell "Windows to run an executable on start-up" and it will be terminated when the tab is closed. This enforces a simple computer security model whereby there are two levels of multilevel security (user and sandbox) and the sandbox can only respond to communication requests initiated by the user.[29]
Typically, Plugins such as Adobe Flash Player are not standardized and as such, cannot be sandboxed as tabs can be. These often need to run at, or above, the security level of the browser itself. To reduce exposure to attack, plugins are run in separate processes that communicate with the renderer, itself operating at "very low privileges" in dedicated per-tab processes. Plugins will need to be modified to operate within this software architecture while following the principle of least privilege.[9] Chrome supports the Netscape Plugin Application Programming Interface (NPAPI),[30][31] but does not support the embedding of ActiveX controls.[31] Also, Chrome does not have an extension system such as Mozilla's XPInstall architecture.[32] Java applets support is available in Chrome as part of the pending Java 6 update 10, which currently is in Release Candidate testing.[33]
A private browsing feature called Incognito mode is provided that prevents the browser from storing any history information or cookies from the websites visited. This is similar to the private browsing feature available in Apple's Safari and the latest beta version of Internet Explorer 8.[34]
A denial-of-service vulnerability was found that allowed a malicious web page to crash the whole web browser.[35][36] However, Google Chrome developers confirmed the flaw, and it was fixed in the 0.2.149.29 release.[37]
Speed
The JavaScript virtual machine was considered a sufficiently important project to be split off (as was Adobe/Mozilla's Tamarin) and handled by a separate team in Denmark. Existing implementations were designed "for small programs, where the performance and interactivity of the system weren't that important," but web applications such as Gmail "are using the web browser to the fullest when it comes to DOM manipulations and Javascript." The resulting V8 JavaScript engine has features such as hidden class transitions, dynamic code generation, and precise garbage collection.[9] Tests by Google showed that V8 was about twice as fast as Firefox 3 and the Safari 4 beta.[38]
Several websites have performed benchmark tests using the SunSpider JavaScript Benchmark[1] tool as well as Google's own set of computationally intense benchmarks, which includes ray tracing and constraint solving.[39] They unanimously report that Chrome performs much faster than all competitors against which it has been tested, including Safari, Firefox 3, Internet Explorer 7, and Internet Explorer 8.[40][41][42][43] While Opera has not been compared to Chrome yet, in previous tests, it has been shown to be slightly slower than Firefox 3, which in turn, is slower than Chrome.[44][45] Another blog post by Mozilla developer Brendan Eich compared Chrome's V8 engine to his own TraceMonkey Javascript engine which is newly introduced in Firefox 3.1alpha, stating that some tests are faster in one engine and some are faster in the other, with Firefox 3.1a faster overall.[46] John Resig, Mozilla's JavaScript evangelist, further commented on the performance of different browsers on Google's own suite, finding Chrome "decimating" other browsers, but he questions whether Google's suite is representative of real programs. He states that Firefox performs poorly on recursion intensive benchmarks, such as those of Google, because the Mozilla team has not implemented recursion-tracing yet.[47]
Chrome also uses DNS prefetching to speed up website lookups.[48]
Stability
The Gears team was considering a multithreaded browser (noting that a problem with existing web browser implementations was that they are inherently single-threaded) and Chrome implemented this concept with a multi-process architecture,[49] similar to Loosely Coupled Internet Explorer (LCIE) recently implemented by Internet Explorer 8.[50] By default, a separate process is allocated to each site instance and plugin.[51] This prevents tasks from interfering with each other, which is good for security and stability; an attacker successfully gaining access to one application does not gain access to all, and failure in one application results in a Sad Tab screen of death, similar to the well-known Sad Mac, except only one single tab crashes instead of the whole application. This strategy exacts a fixed per-process cost up front, but results in less memory bloat overall as fragmentation is confined to each process and no longer results in further memory allocations.[52]
Chrome features a process management utility called the Task Manager which allows the user to "see what sites are using the most memory, downloading the most bytes and abusing [their] CPU" (as well as the plugins which run in separate processes) and terminate them.[9] Some users have reported a conflict with Internet Explorer, often resulting in the blue screen error on Windows.[53]
User interface
The main user interface includes back, forward, refresh, bookmark, go, and cancel options. The options are similar to Safari, while the location of the settings is similar to versions of Internet Explorer starting with version 7. The design of the window is based on Windows Vista.
When the window is not maximized, the tab bar appears directly under the title bar. When maximized, the title bar disappears, and instead, the tab bar is shown at the very top of the window. Unlike other browsers such as Internet Explorer or Firefox which also have a full-screen mode that hides the operating system's interface completely, Chrome can only be maximized like a standard Windows application. Therefore, the Windows task bar, system tray, and start menu link still take space at all times unless they have been configured to hide at all times.
Chrome includes Gears, which adds features for web developers typically relating to the building of web applications (including offline support).[9]
Chrome replaces the browser home page which is displayed when a new tab is created with a New Tab Page. This shows[54] thumbnails of the nine most visited web sites along with the sites most often searched, recent bookmarks, and recently closed tabs.[9]
The Omnibox is the URL box at the top of each tab, which combines the functionalities of both URL box and search box. It includes autocomplete functionality, but only will autocomplete URLs that were manually entered (rather than all links), search suggestions, top pages (previously visited), popular pages (unvisited), and text search over history. Search engines also can be captured by the browser when used via the native user interface by pressing Tab.[9]
Popup windows "are scoped to the tab they came from" and will not appear outside the tab unless the user explicitly drags them out.[9] Popup windows do not run in their own process.[citation needed]
Chrome uses the WebKit rendering engine to display web pages, on advice from the Android team.[9] Like most browsers, Chrome was extensively tested internally before release with unit testing, "automated user interface testing of scripted user actions" and fuzz testing, as well as WebKit's layout tests (99% of which Chrome is claimed to have passed). New browser builds are automatically tested against tens of thousands of commonly accessed websites inside of the Google index within 20-30 minutes.[9]
Tabs are the primary component of Chrome's user interface and as such, have been moved to the top of the window rather than below the controls. This subtle change contrasts with many existing tabbed browsers which are based on windows and contain tabs. Tabs (including their state) can be transferred seamlessly between window containers by dragging. Each tab has its own set of controls, including the Omnibox.[9]
Chrome allows users to make local desktop shortcuts that open web applications in the browser. The browser, when opened in this way, contains none of the regular interface except for the title bar, so as not to "interrupt anything the user is trying to do." This allows web applications to run alongside local software (similar to Mozilla Prism and Fluid).[9]
By default, the status bar is hidden whenever it is not being used. However, it appears at the bottom left corner whenever a page is loading and when a hyperlink is hovered over.
For web developers, Chrome features an element inspector similar to the one in Firebug.[48]
Usage Tracking and Communication
Google Chrome identifies each installation with a unique ID and collects usage statistics including keystrokes. Chrome's usage tracking option enables the software to regularly transmit this information to Google[55][not in citation given]. Usage tracking is an option presented to the user during the software's installation. Once accepted, it is possible to disable the transmission of this information by modifying Chrome's "Under the Hood" options.[56] Freeware programs such as UnChrome can remove the unique ID without having to change the browser.[57] Unofficial builds, such as SRWare Iron, seek to remove these features from the browser altogether[58].
Plugins & Themes
Recently, people have started releasing different plugins and themes (Similar to how Firefox uses themes and plugins) for the Chrome browser. Although there is no "official" program to install them with, users have found a way to use them.
Reception
The Daily Telegraph's Matthew Moore summarizes the verdict of early reviewers: "Google Chrome is attractive, fast and has some impressive new features, but may not—yet—be a threat to its Microsoft rival."[59]
Microsoft reportedly "played down the threat from Chrome" and "predicted that most people will embrace Internet Explorer 8."[60] Opera Software said that "Chrome will strengthen the Web as the biggest application platform in the world."[60] Mozilla said that Chrome's introduction into the web browser market comes as "no real surprise", that "Chrome is not aimed at competing with Firefox", — and furthermore, should not affect Google's financing of Firefox.[61][62]
Chrome’s design bridges the gap between desktop and so-called “cloud computing.” At the touch of a button, Chrome lets you make a desktop, Start menu, or Quick Launch shortcut to any Web page or Web application, blurring the line between what’s online and what’s inside your PC. For example, I created a desktop shortcut for Google Maps. When you create a shortcut for a Web application, Chrome strips away all of the toolbars and tabs from the window, leaving you with something that feels much more like a desktop application than like a Web application or page.
On September 9, 2008 the German Federal Office for Information Security (BSI) issued a statement about their first examination of Chrome, expressing a concern over the prominent download links on Google's German web page, because "beta versions should not be employed for general use applications" and browser manufacturers should provide appropriate instructions regarding the use of pre-released software. They did, however, praise the browser's technical contribution to improving security on the web.[64]
Concern about Chrome's optional usage collection and tracking have been noted in several publications.[65][66]
References
- ^ http://dl.google.com/chrome/install/154.6/chrome_installer.exe
- ^ "Google Chrome is built with open source code from Chromium." Retrieved from: http://dev.chromium.org/developers/how-tos/getting-started.
- ^ http://www.vnunet.com/vnunet/news/2228133/google-chrome-fails-shine Google Chrome fails to shine
- ^ "Chromium Terms and Conditions". Google Code. Retrieved on 2008-09-03.
- ^ McAllister, Neil (2008-09-11). "Building Google Chrome: A first look", Fatal Exception, InfoWorld. Retrieved on 2008-09-16. "As the name suggests, Chromium is a rawer, less polished version of Chrome. The UI is mostly identical, with only a few very minor visual differences...The most readily evident difference is the logo, which sheds the Google colors in favor of a subdued blue design"
- ^ Scott McCloud (2008-09-01). "Surprise!". Google Blogoscoped. Retrieved on 2008-09-01.
- ^ Philipp Lenssen (2008-09-01). "Google Chrome, Google’s Browser Project". Retrieved on 2008-09-01.
- ^ Philipp Lenssen (2008-09-01). "Google on Google Chrome - comic book". Google Blogoscoped. Retrieved on 2008-09-01.
- ^ a b c d e f g h i j k l m n "Google Chrome". Google Books (2008-09-01). Retrieved on 2008-09-02.
- ^ Scott McCloud and Google Chrome team (2008-09-01). "Google Chrome By the Google Chrome team, comics adaptation by Scott McCloud". Google Books. Retrieved on 2008-09-01.
- ^ Pichai, Sundar; Upson, Linus (2008-09-01). "A fresh take on the browser". Google Blog. Retrieved on 2008-09-01.
- ^ "Google Chrome update: First screenshot, and live-blog alert". CNet (2008-09-01). Retrieved on 2008-09-02.
- ^ Associated Press (September 2008). "Google launches Chrome web browser". Retrieved on 2008-09-02.
- ^ "It was when not if… Google Chrome" (September 2008). Retrieved on 2008-09-02.
- ^ "Be sure to read Chrome's fine print". CNET. Retrieved on 2008-09-03.
- ^ Google Terms of Service
- ^ "Google Chrome Terms of Service (English)". Retrieved on 2008-09-04.
- ^ Google Amends Chrome License Agreement After Objections, PC World, 2008-09-03, http://www.pcworld.com/businesscenter/article/150637/google_amends_chrome_license_agreement_after_objections.html. Retrieved on 3 September 2008
- ^ Ackerman, Elise (2008-09-19). "Google browser's tracking feature alarms developers, privacy advocates", San Jose Mercury News. Retrieved on 2008-09-21.
- ^ a b Hoffman, Harrison (2008-09-02). "Chrome tops IE, Firefox in Acid3 test". CNET News. Retrieved on 2008-09-03.
- ^ "Fire Drills and Proving a Point". CodeWeavers (2008-09-15).
- ^ "CrossOver Chromium".
- ^ open group discussion. "Issue 547: Windows 2000 Support Requested". Google Code. Retrieved on 2008-09-15.
- ^ Paul Thomson. "Google Chrome". Retrieved on 2008-09-24.
- ^ Iron, a private version of Chromium from Germany Heise News, 25 September 2008
- ^ Code reuse in Google Chrome Browser
- ^ Chung, Marc (2008-09-05). "chromes-process model explained". Retrieved on 2008-09-10.
- ^ Google (2008-09-01). "Google Chrome". Retrieved on 2008-09-03.
- ^ Barth, Adam; Collin Jackson, Charles Reis, and The Google Chrome Team. "The Security Architecture of the Chromium Browser" (PDF). Stanford Security Laboratory. Retrieved on 2008-09-11.
- ^ "Chrome Supports NPAPI (Netscape Plugin Application Programming Interface)". Wearechrome.com. Retrieved on 2008-09-03.
- ^ a b Google Chrome FAQ for web developers
- ^ FAQ (Chromium Developer Documentation)
- ^ "Java and Google Chrome". Java.com. Retrieved on 2008-09-06.
- ^ "Explore Google Chrome Features: Incognito Mode" (2008-09-02). Retrieved on 2008-09-04.
- ^ Rishi Narang (2008-09-03). "Google Chrome Browser 0.2.149.27 malicious link DoS Vulnerability". Retrieved on 2008-09-03.
- ^ "How to crash Chrome. Again and again.". TGDaily.com (2008-09-03). Retrieved on 2008-09-06.
- ^ "Beta release: 0.2.149.29" (2008-09-08). Retrieved on 2008-09-09.
- ^ Limi, Alexander (2008-09-02). "Chrome: Benchmarks and more". Retrieved on 2008-09-02.
- ^ "V8 Benchmark suite". Google code. Retrieved on 2008-09-03.
- ^ Rupert Goodwins (2008-09-02). "Google Chrome - first benchmarks. Summary: wow.". Retrieved on 2008-09-03.
- ^ "Google Chrome Javascript Benchmarks" (2008-09-02). Retrieved on 2008-09-03.
- ^ Adrian Kingsley-Hughes (2008-09-02). "Google Chrome is insanely fast … faster than Firefox 3.0". Retrieved on 2008-09-03.
- ^ Stephen Shankland (2008-09-02). "Speed test: Google Chrome". CNET Business Tech. Retrieved on 2008-09-03.
- ^ Adrian Kingsley-Hughes (2008-06-16). "SunSpider JavaScript benchmark and ACID 3 compatibility charts - Firefox 3.0 RC 3 and Opera 9.50 added". Retrieved on 2008-09-03.
- ^ Kai Schmerer (2008-05-29). "Browser faceoff: IE vs Firefox vs Opera vs Safari". Retrieved on 2008-09-03.
- ^ Eich, Brendan (2008-09-03). "TraceMonkey Update". Retrieved on 2008-09-03.
- ^ Resig, John (2008-09-03). "JavaScript Performance Rundown". Retrieved on 2008-06-09.
- ^ a b Preston Gralla (2008-09-03). "Three hidden Chrome features you'll love". Retrieved on 2008-09-16.
- ^ Charlie Reisn (2008-09-11). "Multi-process Architecture". Retrieved on 2008-09-12.
- ^ Andy Zeigler (2008-03-11). "IE8 and Loosely-Coupled IE (LCIE)". Retrieved on 2008-09-12.
- ^ Chromium Developer Documentation (2008-09-03). "Process Models". Retrieved on 2008-09-12.
- ^ Google (2008-09-21). "Google Chrome book". Retrieved on 2008-09-21.
- ^ Aditya (2008-09-05). "Google Chrome and the Blue Screen of Death". Retrieved on 2008-09-16.
- ^ Philipp Lenssen. "Google Chrome Screenshots". Google Blogoscoped. Retrieved on 2008-09-02.
- ^ "Chrome is a security nightmare, indexes your bank accounts". Retrieved on 2008-09-24.
- ^ "Google Reacts to Some Chrome Privacy Concerns". Retrieved on 2008-09-24.
- ^ "Google browser's tracking feature alarms developers, privacy advocates". Retrieved on 2008-10-11.
- ^ "SRWare Iron webpage". Retrieved on 2008-10-12.
- ^ Moore, Matthew (2008-09-02). "Google Chrome browser: Review of reviews", Daily Telegraph, Telegraph Media Group. Retrieved on 2008-09-04.
- ^ a b The Associated Press: Google polishes product line with Chrome browser
- ^ John's Blog, Thoughts on Chrome & More
- ^ PC Pro: News: Mozilla: Google's not trying to kill us
- ^ Mediati, Nick (2008-09-03). "Google Chrome Web Browser". PC World. Retrieved on 2008-09-07.
- ^ Gärtner, Matthias (2008-09-09). "BSI-Position zu Google-Chrome" (in German), Federal Office for Information Security, Federal Office for Information Security. Retrieved on 2008-09-09.
- ^ Ackerman, Elise. "Google browser's tracking feature alarms developers, privacy advocates", Mercury News.
- ^ "Google's Omnibox could be Pandora's box" (2008-09-03). Retrieved on 2008-09-04.
Nenhum comentário:
Postar um comentário