overexchange
overexchange

Reputation: 1

How chrome URLS work?

When I say,

chrome://downloads

here my understanding is, chrome is a protocol talking to chrome engine and downloads is like a tag name for specific request to chrome engine.

Is that correct? How does it work(under the hood)?

Upvotes: 9

Views: 153

Answers (1)

ArtBIT
ArtBIT

Reputation: 3999

It's just an internal protocol handler. Browser itself registers a handler to handle URLs that use that protocol. Browsers even let you register your own protocol handlers nowadays.

For more info see:

Upvotes: 1

Related Questions