Is it possible to open custom URL scheme with Google Chrome? Is it possible to open custom URL scheme with Google Chrome? google-chrome google-chrome

Is it possible to open custom URL scheme with Google Chrome?


The current accepted solution has a problem with Chrome for SSL https. Watching the console log, Chrome blocks the request because it thinks the custom url protocol is not secure:

[blocked] The page at reports blah blah ran insecure content from customproto//blah blah

Here is a solution (this took me a few days to research):

    <input type='button' value='Test Custom Url' onclick='exec()'>    <script>    function submitRequest(buttonId) {        var d = (window.parent)?window.parent.document:window.document        if (d.getElementById(buttonId) == null || d.getElementById(buttonId) == undefined) return;        if (d.getElementById(buttonId).dispatchEvent) {                var e = d.createEvent("MouseEvents");                e.initEvent("click", true, true);                d.getElementById(buttonId).dispatchEvent(e);        }         else {                d.getElementById(buttonId).click();        }    }    function exec(){        var d = (window.parent)?window.parent.document:window.document        var f = d.getElementById('customUrlLink')        if (f ) {f.parentNode.removeChild(f);}        var a = d.createElement('a');        a.href =  'mycustomproto://arg1';            a.innerHTML = "Link"                                            a.setAttribute('id',        'customUrlLink');        a.setAttribute("style", "display:none; ");         d.body.appendChild(a);         submitRequest("customUrlLink");    }    </script>

This code will not work for IE. I've found using this technique IE limits the argument of the custom protocol to less than 1000 where as using the iFrame technique IE will allow 2083 chars.

The only way to overcome the url limit in javascript is chuck the data and call multiple times. If anyone wants to take a stab at that, please let me know how it goes. I would like to use it.

To handle long urls in the executing app, pass a token into the app and have it go get the data from a url GET.

So for right now I am using one function for Chrome/FF and another function for IE.

These links helped me develop this solution:

https://superuser.com/questions/655405/custom-protocol-handler-not-working-in-chrome-on-ssl-page

Simulating a click in jQuery/JavaScript on a link

(wish I had known this a few days ago....hope this helps someone)

==================================================

Update: (8hr later)

==================================================

Jake posted a great solution for chrome: https://superuser.com/questions/655405/custom-protocol-handler-not-working-in-chrome-on-ssl-page

This works in chrome only:

 window.location.assign("customprotocol://");

It will fail in an iframe so this is working:

var w = (window.parent)?window.parent:windoww.location.assign(service + '://' +  data)

==================================================

Update: (weeks later)

==================================================

All of the examples of opening the custom protocol, including my own, have a "://" in the url. And this is what is causing the SSL warnings.

Turns out the solution is to change "://" to ":"

so do this:

src="x-myproto:query"  .....

and the SSL warnings will go away.

==================================================

Follow: (after months of production use)

==================================================

This has been working well for chorme. Detect the browser and if chrome do this:

var w = (window.parent)?window.parent:windoww.location.assign('myproto://xyzabcdefetc')

For IE and other browsers I do something slightly different.

Note that browsers do impose a limit on how much data you can put in custom url protocol. As long as your string is under 800 chars this seems to be the magic number for which works in all browsers.


It looks like it's Google's locationbar parsing which is getting in the way.

The browser, however, does seem to handle custom URL schemes properly. Try this in your locationbar:

javascript:document.location = 'myscheme://whatever'

Any link on your page that uses the custom scheme should also do the right thing.


I found the solution that works with Chrome.I use the IFRAME-way.

Example (with JQuery):

$("body").append('<span id="__protoProxy"></span>');function queryWord(aWord){ var protoProxy = document.getElementById('__protoProxy'); if (protoProxy) {     var word = aWord.replace('"','\"');  protoProxy.innerHTML = '<div style="display:none;"><iframe src="x-myproto://query?' + word + '"></iframe></div>'; }}queryWord('hello');