browserosaurus
browserosaurus copied to clipboard
Browserosaurus does not show when opening downloaded html file
Is there an existing issue for this?
- [X] I have searched the existing issues
- [X] I have searched the discussions forum
- [X] I understand this form is for reporting bugs, and not for requesting support for new browsers or apps.
Current Behaviour
When opening a downloaded html file, Browserosaurus grabs focus but no window appears.
Expected Behaviour
Browserosaurus shows the browser picker, a prompt to approve opening the file, or some error message stating that the file could not be opened.
Steps To Reproduce
- Download an html file from the web, e.g. https://example.com/index.html
- Right-click the file -> Open With -> Browserosaurus (or double-click if Browserosaurus is the default app for opening html files)
Browserosaurus version
19.0.0
macOS version
12.5
CPU Architecture
ARM
Anything else?
The downloaded file has the com.apple.quarantine
attribute, and removing it with xattr -d com.apple.quarantine index.html
allows the browser picker to appear as expected.
Thanks. I've not heard of com.apple.quarantine
, I'll have to do some reading up on that.
I don't really know the solution here as Browserosaurus cannot see the incoming URL (file) 🤷♂️
I don't really know the solution here as Browserosaurus cannot see the incoming URL (file) 🤷♂️
Hmm, I'm sure there must be a way to handle this since other apps can open the file directly. Consider these command prompt examples:
% open -a "Brave Browser" index.html
% open -a "Safari" index.html
But if we use 'B', it fails if you use the command:
% open -a "Browserosaurus" index.html
So I'm thinking there must be some way for 'B' to be configured to accept input using the standard MacOS open command (from /usr/bin/open
).
EDIT: Perhaps it's just a different input type for 'file' versus 'URL' that 'B' needs to be enabled to parse and then pass onto a specific browser using a similar open
command?