Chrome on Android support a special intent://
URL that contains both the Android intent, but also exactly the package that is intended to handle the intent. If the package is not installed it redirects to Google Play (see https://developer.chrome.com/multidevice/android/intents).
How can I accomplish the same thing in my own app, opening an intent using a specific application (avoiding the app selection dialog if multiple apps handle the intent)? I do not just want to open the other app, I also want it to handle the intent and view a specific page.
To be clear, I want the behavior to be identical to opening an Intent created by a URI, with the only difference that only a particular app should handle the intent, with no dialog asking the user to pick one if multiple apps are installed that handles it.