If google chrome uses WebKit, can I create my own chrome?

The Google Chrome browser uses WebKit for HTML / CSS / JavaScript / etc ... rendering, which means that Google Inc. used something accessible to all and created nothing

So, if WebKit is free, can I use it to build my browser as fast as chrome? Did Google just create an interface and not develop a rendering engine?

+4
source share
2 answers

Basically, you're right, but also keep in mind that Google Chrome uses V8 as its javascript engine. And you can expand this line of thought to other parts needed to create a fully functioning browser.
You will also need (cross-platform) code to run and display your chrome ui and interact with os.

+6
source

Yes, you can create your own browser. But there are a few things that make Google Chrome a better browser. The rendering engine may open up. But there are a few other things that you need to consider when viewing a browser. This is an abstract browser architecture, Webkit is just a rendering engine.

browse architecture

Watch this blog post and try to understand what the browser browser does and what engines they use.

http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/

There are many Chromium-based browsers such as Rockmelt.

Disclaimer: This is an image from the html5rocks blog.

+5
source

All Articles