Skip to content

Instantly share code, notes, and snippets.

@bitcrazed
Created September 30, 2014 15:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bitcrazed/e48fbc5c646bc152f697 to your computer and use it in GitHub Desktop.
Save bitcrazed/e48fbc5c646bc152f697 to your computer and use it in GitHub Desktop.
Configure IE to display JSON in the browser
Windows Registry Editor Version 5.00
;
; Tell IE to display JSON documents in the browser.
; 25336920-03F9-11cf-8FD0-00AA00686F13 is the CLSID for the "Browse in place" .
; Source: http://stackoverflow.com/questions/2483771/how-can-i-convince-ie-to-simply-display-application-json-rather-than-offer-to-do
;
[HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/json]
"CLSID"="{25336920-03F9-11cf-8FD0-00AA00686F13}"
"Encoding"=hex:08,00,00,00
[HKEY_CLASSES_ROOT\MIME\Database\Content Type\text/json]
"CLSID"="{25336920-03F9-11cf-8FD0-00AA00686F13}"
"Encoding"=hex:08,00,00,00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment