Skip to content

Commit cbd0891

Browse files
authored
Add URL Handlers to auto launch (#7)
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
1 parent d0df711 commit cbd0891

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

manifest_unityclient.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,37 @@
4646
},
4747
"externally_connectable": {
4848
"matches": ["*://localhost:*/*", "*://127.0.0.1:*/*", "*://*.imaginelearning.com/*"]
49-
}
49+
},
50+
"url_handlers": {
51+
"testapp.imaginelearning.com" : {
52+
"matches": [
53+
"*://testapp.imaginelearning.com/*"
54+
],
55+
"title": "Open Imagine Learning"
56+
},
57+
"rcapp.imaginelearning.com" : {
58+
"matches": [
59+
"*://rcapp.imaginelearning.com/*"
60+
],
61+
"title": "Open Imagine Learning"
62+
},
63+
"partnerapp.imaginelearning.com" : {
64+
"matches": [
65+
"*://partnerapp.imaginelearning.com/*"
66+
],
67+
"title": "Open Imagine Learning"
68+
},
69+
"eapapp.imaginelearning.com" : {
70+
"matches": [
71+
"*://eapapp.imaginelearning.com/*"
72+
],
73+
"title": "Open Imagine Learning"
74+
},
75+
"app.imaginelearning.com": {
76+
"matches": [
77+
"*://app.imaginelearning.com/*"
78+
],
79+
"title": "Open Imagine Learning"
80+
}
81+
},
5082
}

0 commit comments

Comments
 (0)