extension ExtPose

JSONVue

CRX id

chklaanhfefbnpoihckbnefhakgolnmc-

Description from extension meta

Validate and view JSON documents

Image from store JSONVue
Description from store JSONView port for Chrome. Original firefox extension is here: http://benhollis.net/software/jsonview/ Notes: - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint) - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt) - The stylesheet used to display the JSON content can be customized - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported

Latest reviews

  • (2024-02-29) Best JSON viewer extension I've used ...
  • (2023-08-28) Wesley Schwengle: They changed the UI. I don't like the current way. I need to flip the prettify the JSON everytime I refresh the page. I also miss the ability the fold/unfold the JSON. It went from very usable to nice MVP. Would not recommend it anymore.
  • (2023-02-07) Theodore: Works great. View source button works fine for me in Google Chrome.
  • (2023-01-09) is usual brag: I already use this handfull extension for years. And I have a request if you dont mind. When we choose darkmode chrome, json key is not contrast to background (text white, while background is white too). Hope team dev could help with that, thanks
  • (2022-12-24) Lalita Jain: THE WORST APP EVER STILL HAVE TO USE IT FOR PROGESTS
  • (2022-11-09) Arek R: Czytelne i wygodne przeglądanie danych w JSONie!
  • (2022-09-23) Chester Yu: Generally great tool. Would be great to have default style for dark mode and auto switching.
  • (2022-09-20) ABID HASAN: A perfect extension for day-to-day life. I forgot that I have installed it. Using it for a year now. Thank you!
  • (2022-08-31) Md. Rabiul Islam: Nice & Excellent
  • (2022-08-16) Ying-Ching Chen: nice update with color
  • (2022-08-10) Hyoukjoon Lee: very useful tool
  • (2022-05-16) Wicky Liao: good job
  • (2022-04-01) IC: Removes quotes, copy-pasting results in invalid json. I didn't find an option to keep quotes
  • (2022-01-27) Lindsay Frost: Added extension with a click. Tried it on new openAlex interface with JSON response (e.g. https://api.openalex.org/authors/https://orcid.org/0000-0001-6187-6610 ) and it worked fine! My system has Chrome Version 97.0.4692.99 (Official Build) (64-bit)
  • (2022-01-09) Олег Лысяков: For dark theme try to set this CSS (Settings=>Open style editor): body { white-space: pre; font-family: monospace; background-color: #262626; color: #dfdfdf; margin-left: 10%; } ::selection { color: white; background: rgba(18, 112, 250, 0.6); } .property { font-weight: bold; } .type-null { color: #cccccc; } .type-boolean { color: #fa5555; } .type-number { color: #5599df; } .type-string { color: #66cb44; } .callback-function { color: gray; } .collapser:after { content: "-"; } .collapsed > .collapser:after { content: "+"; } .ellipsis:after { content: " … "; } .collapsible { margin-left: 2em; } .hoverable { padding-top: 1px; padding-bottom: 1px; padding-left: 2px; padding-right: 2px; border-radius: 2px; } .hoverable a { color: #66cb44; } .hovered { background-color: rgba(235, 238, 249, 0.12); } .collapser { padding-right: 6px; padding-left: 6px; } Very good for eyes now 👍
  • (2022-01-05) 李早: 大数字,精度丢失
  • (2021-12-25) Kory: https://chrome.google.com/webstore/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd/related?hl=ko 'JASONView'가 더 좋습니다.
  • (2021-12-24) teahouse: Very nice!
  • (2021-12-16) 董文龙: 还行
  • (2021-12-09) Gordon Freeman: Перестало работать во фреймах(((
  • (2021-12-03) George Pantazes: I liked and used this extension for a while, but some things annoyed me: - The rendered JSON cannot by copied as raw JSON text. It strips off all of the quotes, meaning you have to flip back to RAW if you want to copy valid JSON. - The button to switch to raw text doesn't work for me. I had to disable the extension entirely to see the underlying raw JSON. Until the above issues are addressed, this plugin is fine for simply viewing JSON, but that's where its usefulness ends. However, since it doesn't allow copying valid JSON or flipping back to the raw text, it often creates problems when switching over to heavier tools such as a text editor. I'll be switching to and trying out the JSON Viewer extension (https://chrome.google.com/webstore/detail/json-viewer/gbmdgpbipfallnflgajpaliibnhdgobh) instead, which doesn't suffer from the above issues, and still has features like syntax highlighting and collapse/expand.
  • (2021-11-24) 微笑: good
  • (2021-11-23) Mikaël Morvan: parfait, comme tous les outils de Gildas :)
  • (2021-10-14) Mei Giyanto: icon plus or minus is too small
  • (2021-09-01) d p: It is pretty cool, but less than functional if you need the original json text for something else. The glaring issue I have is that you can't turn it off and it's not proper json after it runs. There are three options for 'on'. That's 1. on for all sites. 2. on for this site. 3. on when you click the extension. There is no 'off when you click the extension' or toggle between on and off. Brilliant idea, but it looks like they didn't think people that are looking at a json response message (that's everyone that would understand this) might actually want to use that json object somewhere else after they use this to peek at it. This would be awesome and a huge time saver if it was setup to peek at the pretty json version and jump back to the proper one easily. If you can't turn it off and you have to muck around to get the json after it is on it's easier to just copy/paste it into a text file to run it through jq, jp, or a million other methods that will do what this does and not lose the original json in the process. It may be truly awesome for someone that is looking at json response messages, but has no intention of doing anything with those responses.
  • (2021-08-15) Alejandro Moreno: Realmente es bastante util. Solo mejorar un poco la interacción de apertura y cierre de objetos pero en general ayuda bastante. Muy buena la opcion de modificar el css porque realmente el fondo blanco quema la vista al tiempo. Aqui comparto el mio, espero les sea util body { background-color: #404040; color: lightgray; white-space: pre; font-family: arial; } .property { font-weight: bold; } .type-null { color: gray; } .type-boolean { color: lightblue; } .type-number { color: lightgreen; } .type-string { color: #FFFF99; } .callback-function { color: gray; } .collapser:after { content: "-"; } .collapsed > .collapser:after { content: "+"; } .ellipsis:after { content: " … "; } .collapsible { margin-left: 2em; } .hoverable { padding-top: 1px; padding-bottom: 1px; padding-left: 2px; padding-right: 2px; border-radius: 2px; } .hovered { background-color: #606060; } .collapser { padding-right: 6px; padding-left: 6px; }
  • (2021-08-11) Jean Castillo: Ok for the most part. However, it changed the contents of one file i was looking at for no reason. Using Jason Viewer instead now
  • (2021-08-05) Stephan Klop: Gewoon top. Doet wat 't moet doen.
  • (2021-07-14) Tender: 怎么打开
  • (2021-07-07) Ma. Cecilia Santillan: Works almost perfectly. The "View Original" needs to be copied and pasted into a new tab, just clicking it doesn't actually do anything. And the fact that the tree view doesn't have quotes means it's hard to copy directly from the formatted data; I need to click "View Original" which requires a lot of extra clicks. It's still very useful, but it could be better. Might move on to a better, more recently-updated tool.
  • (2021-05-28) Patrik Halén: Works flawlessly!!! Just add and use!!! :) :)
  • (2021-03-16) Mathis Soënen: I was searching for something to view JSON on chrome, without installing new software such as SoapUI. This extension is EXACTLY what i was looking for. Don't need lot of configuration or tutorial to use. Just install and refresh JSON web pages. Perfect.
  • (2021-03-09) Cem Çite: Collapsing theme is not best.
  • (2021-02-24) SON LE DUC: rất tốt, mothers extension
  • (2021-02-16) Ricardo Berzal: Tiene un problema gravísimo , al menos para mi, para buscar un texto abre un input propio en la parte superior izquierda, tecleas, intro y ese input desaparece, fin del f3. Si en ese momento intentas buscar la siguiente ocurrencia es imposible, no funciona el f3 (abre el de chrome) y no funciona con el buscador de texto de chrome. Si poder buscar un texto me parece imposible utilizarlo, solo por eso recomiendo JSON Formatter
  • (2021-01-25) Dhruv Bhat: It's good enough.
  • (2021-01-22) getit haile: this is a bug: original data: { ......, "item_id":206960017876850643, .... } but the formatted data is : { ......, "item_id":206960017876850660, .... }
  • (2020-12-21) Soumendu Bhattacharyya: Best
  • (2020-12-19) Hyunwoo Choi: Saved my eyes.. Thanks!
  • (2020-12-11) Evgenya & Alexander: Open source, but shares its Privacy Policy with other extension
  • (2020-12-11) Andrej K: Otherwise ok, but "view source" doesn't work, any way to fix it or any work-around?
  • (2020-12-11) UnkHS: good extension
  • (2020-11-23) thomas vermeersch: great
  • (2020-11-13) 花伟: 好
  • (2020-11-12) Hacker M: 经常不起作用啊
  • (2020-11-12) Carlos Alberto Ortiz Losada: Muy buena visualización del formato JSON
  • (2020-10-27) Jarrod Whitley: Works great
  • (2020-10-14) Great!
  • (2020-09-25) Sanuj Bhatnagar: I love this extension, it shows the response json in proper format, I would love to see it getting enhanced and have more options after parsing data
  • (2020-09-18) Sanaullah Fiaz: Well its fine and it is going well THANKS...

Latest issues

  • (2023-09-14, v:0.1.18) Ryan Dorminey: in Chrome v117.x now I have to print pretty print button
    Something changed in chrome v117 , previously in v116, the json would just be rendered. Now in v117 it requires me to click pretty print. Is there a setting to default this to pretty print as it was before?
  • (2023-02-28, v:0.1.18) Lars Bo Wassini: Option to keep quotes
    Would it be possible to have an option to keep the quotes around the name? "Products": [ { "Id": "ImportedPROD2947" Instead of { Products: [ { Id: "ImportedPROD2947",
  • (2022-11-04, v:0.1.18) Luciano Colangelo: Copy Path doesn't work
    Copy Path doesn't work
  • (2022-09-02, v:0.1.18) Klaus Kobald: screen is black
    most times the background is black, so I can't read the json
  • (2022-07-05, v:0.1.17) Bob Florian: Lack of formatting running with Chrome on Apple Silicon.
    I am seeing incomplete formatting of the JSON document when running in Chrome 103.0.5060.53 on Apple Silicon (arm64). The document has newlines and indentation but the font is all Times, no color, and no ability to hide and expand nodes. Works fine with the same version of Chrome on another machine with the Intel chip. Anyone else run into this issue?
  • (2022-04-28, v:0.1.17) Jason Carlock: Open File from local machine?
    I have a .json file that is an export from postman. I tried dragging the file into chrome, but it stayed a jumbled mess. Is there a way to open a local file in chrome using your extension? Thanks! PS - Use this a lot, works great. Thanks.
  • (2021-12-30, v:0.1.17) 李早: big number lose precision
    if return data contain big number like: "group_id":7046259197201088520, it will lose precision and show result like:group_id: 7046259197201089000, just FYI
  • (2021-12-27, v:0.1.17) Michael Casbon: Apache Log4j critical vulnerability (CVE-2021-44228)
    1.Do you, or any vendor, contractor, or other third party provider working on your behalf, use Log4j? ☐Yes ☐No a. If yes, is/are the entity/entities using a version of the Log4j that is effected by the CVE-2021-44228 vulnerability? ☐Yes ☐No b. If yes, what versions? 2.Do you use Log4j in any of the products that you provide? ☐Yes ☐No a. If yes, provide the version number(s) of those product(s) (internet web links are accepted) b. If yes, has a data sensitiveness assessment been conducted (stored, processed, etc.) 3. Points of contact for future follow-ups (feel free to provide more than one): Name: Title: Phone Number: Email Address:
  • (2021-12-09, v:0.1.2) Gordon Freeman: Перестало работать во фреймах
    Перестало работать во фреймах
  • (2021-02-24, v:0.0.32.3) Ta Ta: как пользоваться
    а как пользоваться
  • (2021-01-27, v:0.0.32.3) Poopy Doop: Copy path returns undefined now
    when trying to copy a property path im getting undefined. It used to work... not any more for me
  • (2020-05-22, v:0.0.32.3) JSL: Could you give me a favor about license?
    Hello team. Could I know if there's any license cost to keep using this program via Chrome Add-ons? It would be thankful, if you please confirm the license query. Thanks & best regards.
  • (2020-05-15, v:0.0.32.3) Jordan Lee: Here to help
    I word as software engineer at Oracle Cloud and I would love to contribute to this extension. My personal email is [email protected]
  • (2020-05-13, v:0.0.32.3) Filipe Santos: Problemas ao tentar entrar nas Opções
    Sempre que tento entrar nas opções para mudar o tema ou coisas assim me deparo com o seguinte erro "chklaanhfefbnpoihckbnefhakgolnmc está bloqueado"
  • (2020-05-07, v:0.0.32.3) Jim Morrison: Dark Theme - if anyone else finds it nice..
    https://pastebin.com/HxpmCcBf
  • (2020-03-10, v:0.0.32.3) tarre tan: Long negative numbers
    I spent hours searching for a bug that didnt exist because you cannot handle negative numbers properly?! Try use this json: {"test": -1067353086369986796} and see what you get....
  • (2020-02-07, v:0.0.32.3) waseem mu: twice request to console and command line ,
    I get double request in the newtwork (i use localhost with nodejs and express.js package). app.get('/',(req,res)=>{ const user = { name:'Mike', gender:'male' } res.send(user); }) app.listen(3000); and console/network localhost: 200 document localhost: 304 xhr
  • (2019-11-13, v:0.0.32.3) Ongda Dorjee: Hello
    Does JSON view collect the data while parsing?
  • (2019-07-31, v:0.0.32.3) Mahesh Waghmare: Object Order
    Now the order of the object is mismatch because of its default order it set by ids. I'm my case the order of the item is 20, 19. But, While previewing the respond with the extension It's 19, 20. I have spend a week depends on this repose and debug in the wrong way. See https://cl.ly/0418cefa199f
  • (2019-07-31, v:0.0.32.3) Sylvain Pasutto: Bug while viewing JSON
    Hello, there is a bug in the extension when I request this JSON : { "data": null, "length": null, "status": false, "message": "Invalid track file : DOMDocument::load(): I\/O warning : failed to load external entity &quot;file:\/C:\/dev\/web\/Trackfile-Lib\/examples\/tracykfiles\/trackfile.gpx&quot;" } The bug pop at function displayError in content.js (line 4) : var link = document.createElement("link"), pre = document.body.firstChild.firstChild, text = pre.textContent.substring(offset), (...) the initialisation of var "pre" fail : document.body.firstChild.firstChild is undefined at the top of the function (document.body at this step is : "<body>{↵ "data": null,↵ "length": null,↵ "status": false,↵ "message": "Invalid track file : DOMDocument::load(): I\/O warning : failed to load external entity "file:\/C:\/dev\/web\/Trackfile-Lib\/examples\/tracykfiles\/trackfile.gpx""↵}</body>")
  • (2019-06-06, v:0.0.32.3) sharad pandey: how do i add the file to work on it
    how do i add a json file
  • (2019-04-27, v:0.0.32.3) Henrique Barcellos: Switching between JSON and YAML
    It would be nice if there was support for switching between JSON and YAML.
  • (2019-03-08, v:0.0.32.3) Sokkalingam S Subramanian: Make it work inside iframes
    Hi, I love your extension! It is a life saver! Thank you so much for that. Do you think you can make it work for JSONs inside iframes ?
  • (2018-12-19, v:0.0.32.3) JSON View
    Great add-on!! How do you stop the JSON stream from being truncated
  • (2018-10-26, v:0.0.32.3) 王鹏飞: 多级目录相同key,value会错乱
    多级目录相同key,value会错乱。key是id,结果几个实例的id全串了。我看json edior的也有这个问题,你们用的相同技术?应该是copy的时候遍历key的值出的问题吧,想办法解决吧,这个问题还奇葩的
  • (2018-07-10, v:0.0.32.3) Dave Brooks: Format Date
    It appears that dates are being displayed in Long format which is not eyeball friendly. Can I change this to ISO?
  • (2018-07-01, v:0.0.32.3) Magno Alberto: Replace dash (-) by counter like Firefox
    Good addin, but if replace dash (-) by counter like Firefox, will be excellent. Thanks!
  • (2018-04-06, v:0.0.32.3) 青山正太郎: Support file:// scheme
    It would be nice if file:///path/to/foo.json was rendered with JSONView, so we could preview a local json file with Chrome.

Statistics

Installs
1,257,839 history
Category
Rating
4.5383 (2,651 votes)
Last update / version
2023-11-29 / 0.2.3
Listing languages
en

Links