Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is any way to make a web application the default handler for a specific file type/extension/mime type? That is, can I make my browser load a web application which can handle .blah files when I click on a .blah link?

Rationale: I'd like to be able to set up my web application for playing the game of go so it can open .sgf files without saving them to disk and re-uploading them or providing a url etc.

I figure this goes on stack overflow because it's fine to have to change web application to make it work.

share|improve this question

1 Answer

As far as I know this is not possible.

This would require support by the different browsers and/or OS to map a mime-type/file extension to a web application (instead of a desktop application).

This is not currently supported by any browser I know.

If you can setup the OS to open a URL then you may be able to do this (not possible in Windows).

share|improve this answer
Thank you for answering, your reply got me thinking differently about the problem. – Hans Jan 2 '12 at 21:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.