I want to make a flow that when the user shares a URL, the flow opens the source code of the website/webpage on the foreground browser. I know how to use Foreground App & When Content Shared blocks, my problem is with App Start. I have tried using both App Start and Content View to open the shared URL with "view-source:" prepended to it, which definitely works manually on Chrome, but none of those blocks recognize Chrome as capable of supporting that URI Scheme.
The easiest solution would be to use HTTP Request to download the webpage as a .txt file instead of .html, an then use Content View to let the user select a plaintext viewer. Buy I still want to open the URL on the browser, to avoid redownloading the same file just to view it. How can I force the foreground browser (or at least, the default browser) to open view-source scheme URLs?