When saving images from Twitter, then these images are sometimes saved with the extension .jpg-large
when using Google Chrome (Chromium Issue 172529).
I was wondering if it is still possible to select these images in the file explorer when chosing an image via an input
element?
My input element is this:
<input
accept="image/jpeg, image/png, image/bmp, image/gif"
data-bind="file_select: upload_images"
multiple="multiple"
type="file"
/>
I checked the MIME type of the image-large
file and it is image/jpeg
:
So the browser should be able to display it in the file dialog but in fact it's hidden:
Is there a way to display this custom file extension?