From cee14c4e922e7cc5e9e7d2d456dabbf8442e7eca Mon Sep 17 00:00:00 2001 From: lincolncoe Date: Mon, 16 Oct 2017 15:56:48 -0600 Subject: [PATCH] Add URL Handlers to auto launch We used this method in the old client, it allows us to auto launch the app if installed when using a Clever SSO link. Documentation: https://developer.chrome.com/apps/manifest/url_handlers --- manifest_unityclient.json | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/manifest_unityclient.json b/manifest_unityclient.json index c2caac6..53f3f2c 100644 --- a/manifest_unityclient.json +++ b/manifest_unityclient.json @@ -46,5 +46,37 @@ }, "externally_connectable": { "matches": ["*://localhost:*/*", "*://127.0.0.1:*/*", "*://*.imaginelearning.com/*"] - } + }, + "url_handlers": { + "testapp.imaginelearning.com" : { + "matches": [ + "*://testapp.imaginelearning.com/*" + ], + "title": "Open Imagine Learning" + }, + "rcapp.imaginelearning.com" : { + "matches": [ + "*://rcapp.imaginelearning.com/*" + ], + "title": "Open Imagine Learning" + }, + "partnerapp.imaginelearning.com" : { + "matches": [ + "*://partnerapp.imaginelearning.com/*" + ], + "title": "Open Imagine Learning" + }, + "eapapp.imaginelearning.com" : { + "matches": [ + "*://eapapp.imaginelearning.com/*" + ], + "title": "Open Imagine Learning" + }, + "app.imaginelearning.com": { + "matches": [ + "*://app.imaginelearning.com/*" + ], + "title": "Open Imagine Learning" + } + }, }