Skip to content

Instantly share code, notes, and snippets.

@SimonMarquis
Last active March 11, 2024 06:23
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SimonMarquis/e905984ee13ec3e404e8 to your computer and use it in GitHub Desktop.
Save SimonMarquis/e905984ee13ec3e404e8 to your computer and use it in GitHub Desktop.
Trigger the provided url scheme or fallback to Google Play Store
<!DOCTYPE html>
<html>
<head>
<script src="scheme.js"></script>
<script type="text/javascript">
// myscheme://init?param1=value1&param2=value2
var scheme = "myscheme";
var data = "init?param1=value1&param2=value2";
var packagename = "com.example.scheme";
</script>
</head>
<body>
<button type="button" onclick="triggerScheme(scheme, data, packagename);">Start</button>
</body>
</html>
/**
* Trigger the provided url scheme or fallback to Google Play Store.
* Support of Chrome, Firefox, Opera and default Android Browser.
* @param {String} scheme: URI scheme
* @param {String} data: URI hierarchical part + query
* @param {String} packagename: application identifier
*/
function triggerScheme(scheme, data, packagename) {
var url_scheme = scheme + "://" + data;
var url_store = "https://play.google.com/store/apps/details?id=" + packagename;
var url_chrome = "intent://" + data + "#Intent;scheme=" + scheme + ";package=" + packagename + ";end";
function iframe(scheme, store) {
var iframe = document.createElement("iframe");
iframe.style.border = "none";
iframe.style.width = "1px";
iframe.style.height = "1px";
iframe.onload = function() {
document.location = store;
};
iframe.src = scheme;
document.body.appendChild(iframe);
}
if (navigator.userAgent.match(/OPR/)) {
iframe(url_scheme, url_store);
} else if (navigator.userAgent.match(/Chrome/)) {
document.location = url_chrome;
} else if (navigator.userAgent.match(/Firefox/)) {
document.location = url_scheme;
} else {
iframe(url_scheme, url_store);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment