Lets us say in my app I have an intent like this
val browserIntent = Intent(
Intent.ACTION_VIEW,
Uri.parse("https://example.com")
)
startActivity(browserIntent)
suppose example.com executes a javascript function that can get return data to console for example. How can get that data from the browser and use it in my application