If you need only a nice viewer/parser I can recommend good ol JSON Formatter , really handy addon which also gives you easy access to elements with json in console. There is also a newer fork of it with some color themes and visual features, but because of it loading bigger JSON files can take much longer (or even crash the tab). Answer from brown59fifty on reddit.com
๐ŸŒ
Chrome Web Store
chromewebstore.google.com โ€บ detail โ€บ json-viewer โ€บ aimiinbnnkboelefkjlenlgimcabobli
JSON Viewer - Chrome Web Store
Features: * Syntax highlighting * Collapsible trees, with indent guides amd items count * Clickable URL's * JSON & JSONP support * Toggle between raw and parsed JSON * Works on any valid JSON page even on local files too (if you enable this in chrome://extensions) Note: This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on โ€“ Please, disable those before trying this for better experience.
๐ŸŒ
Chrome Web Store
chromewebstore.google.com โ€บ detail โ€บ json-formatter โ€บ bcjindcccaagfpapjjmafapmmgkkhgoa
JSON Formatter - Chrome Web Store
Display JSON objects by transforming them into Syntax editable highlighted HTML to validate, format, and save ... Average rating 4.0 out of 5 stars. Learn more about results and reviews. Adds React debugging tools to the Chrome Developer Tools.
Discussions

How to view JSON in Chrome like Firefox?
If you need only a nice viewer/parser I can recommend good ol JSON Formatter , really handy addon which also gives you easy access to elements with json in console. There is also a newer fork of it with some color themes and visual features, but because of it loading bigger JSON files can take much longer (or even crash the tab). More on reddit.com
๐ŸŒ r/webdev
13
3
December 31, 2019
chromium - Load json manually in chrome://tracing - Stack Overflow
Yes, there are a few ways in which you can pass the json data to chrome://tracing (i.e. trace viewer) without manually clicking load data . More on stackoverflow.com
๐ŸŒ stackoverflow.com
Chrome extension JSON viewer
I'm interested in contributing to the project! do you have a public repo? More on reddit.com
๐ŸŒ r/webdev
2
3
February 18, 2024
How do I turn this off? I prefered my own json viewer....
Thank you for your submission to r/Chrome ! We hope you'll find the help you need. Once you've found a solution to your issue, please comment "!solved" under this comment to mark the post as solved. Thanks! I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns. More on reddit.com
๐ŸŒ r/chrome
2
1
March 26, 2023
๐ŸŒ
Chrome Web Store
chromewebstore.google.com โ€บ detail โ€บ json-viewer-pro โ€บ eifflpmocdbdmepbjaopkkhbfmdgijcc
JSON Viewer Pro - Chrome Web Store
JSON Viewer & Formatter for Chrome3.7 ยท Average rating 3.7 out of 5 stars. Learn more about results and reviews. Formats JSON in your browser, so it's beautiful and easy to read. Seven JSON Viewer4.5 ยท Average rating 4.5 out of 5 stars. Learn more about results and reviews.
๐ŸŒ
GitHub
github.com โ€บ tulios โ€บ json-viewer
GitHub - tulios/json-viewer: It is a Chrome extension for printing JSON and JSONP. ยท GitHub
The most beautiful and customizable JSON/JSONP highlighter that your eyes have ever seen. It is a Chrome extension for printing JSON and JSONP.
Author ย  tulios
๐ŸŒ
JSON Formatter
jsonformatter.org โ€บ json-viewer
JSON Viewer Online Best and Free
Best and Secure JSON Viewer works well in Windows, Mac, Linux, Chrome, Firefox, Safari and Edge.
๐ŸŒ
Jsonhero
jsonhero.io
JSON Hero - a beautiful JSON viewer for the web
Quickly view JSON files or selections in JSON Hero, right from VS Code.
Find elsewhere
๐ŸŒ
Jsonview
jsonview.com
JSONView - View JSON in Firefox and Chrome | BenHollis.net
A Firefox and Chrome extension that pretty-prints JSON data.
๐ŸŒ
Softonic
json-viewer.en.softonic.com โ€บ home โ€บ web browsers โ€บ browsers โ€บ google chrome โ€บ json viewer
JSON Viewer for Google Chrome - Extension Download
September 25, 2023 - JSON Viewer allows you to view, format, and print your JSON and JSONP files quickly. To use this plugin, first install it, then open your JSON file in Chrome. You will see an icon in the address bar.
Rating: 9.2/10 โ€‹ - โ€‹ 1 votes
๐ŸŒ
JSONLint
jsonlint.com โ€บ json-formatter
JSON Formatter For Chrome | JSONLint
Turn tedious JSON data into a visually intuitive, interactive experience with our JSON Formatter. Featuring color-coded formatting, image previews, clickable URLs, and easy navigation.
๐ŸŒ
JSONLint
jsonlint.com
JSONLint - The JSON Validator
JSONLint is the free online validator, json formatter, and json beautifier tool for JSON, a lightweight data-interchange format.
๐ŸŒ
Chrome Web Store
chromewebstore.google.com โ€บ detail โ€บ jsonview โ€บ gmegofmjomhknnokphhckolhcffdaihd
JSONView - Chrome Web Store
Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!
๐ŸŒ
GitHub
github.com โ€บ teocci โ€บ JSONViewer-for-Chrome
GitHub - teocci/JSONViewer-for-Chrome: Validates and makes JSON documents easy to read. ยท GitHub
JSONViewer-for-Chrome is a Chrome extension for printing JSON nicely when you visit it 'directly' in a browser tab. This allows you to a view JSON string in a tree format.
Author ย  teocci
๐ŸŒ
Ful.io
ful.io โ€บ blog โ€บ top-5-json-viewer-chrome-extensions-you-need-to-check-out
Top 5 JSON Viewer Chrome Extensions You Need To Check Out
May 20, 2025 - This Chrome extension is a powerful tool designed for developers, offering convenient printing capabilities directly within the browser. ... Highlight Syntax: Easily identify JSON syntax elements for improved readability.
Top answer
1 of 3
4

The Trace-viewer tool currently loads the JSON file in 3 ways:

  • When recording a new trace
  • When loading the file via the load button after the file has been picked
  • When dropping the file into the tab (drag & drop)

All of these do a one-time update to the active trace.


Technical details

Look at the profiling_view and notice

 tr.ui.b.readFile(file).then(
 ...
    this.setActiveTrace(file.name, data);

and a few variations on calls to setActiveTrace from beginRecording , onLoadClicked_ and dropHandler_ .


Solution suggestions

Yes, there are a few ways in which you can pass the json data to chrome://tracing (i.e. trace viewer) without manually clicking load data .

Depending on how much effort you want to put into it:

  1. Don't manually click load but drag and drop the file
  2. Automate the drag & drop (example with selenium) based on a script which watches for file changes to the JSON
  3. Automate the load based on file changes
  4. Contribute to Trace Viewer yourself and add this feature. See the tracing ecosystem explainer and contributing. Note it is now part of the Catapult project in GitHub.

See fswatch - a cross-platform file change monitor.

2 of 3
3

Here is a solution, if you can relax the requirement that you have to open it with Chrome-Tracing. Speedscope is a nice replacement and can be easily started from the command line.

For offline use, or convenience in the terminal, you can also install speedscope via npm:

npm install -g speedscope

Invoking speedscope /path/to/profile will load speedscope in your default browser. Source

speedscope <my-chrome-tracing.json> opens the file.

Speedscopes offers different views but not sometimes not the same view as Chrome-Tracing. So it might not be the right choice for all use cases.

๐ŸŒ
Medium
medium.com โ€บ @ecastille924 โ€บ super-helpful-chrome-extension-for-json-data-f8a735c96bf4
Super Helpful Chrome Extension for JSON data | by Erick Castille | Medium
February 12, 2022 - It doesnโ€™t at all look like readable, digestable information unless you really squint. What we really want to see is something tha tlooks more like the first example above. Good news! All you have to do is download the JSONView chrome extension available here.
๐ŸŒ
JSON Viewer
jsonviewer.stack.hu
Online JSON Viewer and Formatter
JSON is a text-based, human-readable format for representing simple data structures and associative arrays (called objects). Read more: json.org, wikipedia, google In JSON, they take on the following forms: object, array, value, string and number. Several users reported slow loading speed in Chrome...