Custom protocol handlers in Chrome

Is it possible to register my own protocol handler in Chrome? This code works in Firefox, but not in chrome:

navigator.registerProtocolHandler("random", "https://www.example.com/?uri=%s", "Random Protocal"); 
+2
source share
1 answer

According to MDN , it should start with web+ starting with Chrome 13.

+4
source

All Articles