Created
March 4, 2015 17:23
-
-
Save niallsmart/059202f4cfd51b055e4b to your computer and use it in GitHub Desktop.
Get Internet Explorer to display JSON inline (via http://stackoverflow.com/questions/2483771)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; | |
; Tell IE to open JSON documents in the browser. | |
; 25336920-03F9-11cf-8FD0-00AA00686F13 is the CLSID for the "Browse in place" . | |
; | |
[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