Home > Software engineering >  What type of URL is chrome://?
What type of URL is chrome://?

Time:02-01

What type of link is Chrome://, Edge:// and Steam:// ?

I have tried to search this in Internet but couldn't find it and also how can I create a URL like this

CodePudding user response:

These URIs are custom app url handlers. These URLs will be resolved from the Browser at OS level where the browser will query the OS what to execute. After gathering the information, the browser will then attempt to open a specific application with the URI as parameter.

To create such URI, you need to define the handler, which depends on the OS. Here are a few examples:

  •  Tags:  
  • Related