Skip to content

Commit

Permalink
changed readme and console
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrahul committed May 23, 2020
1 parent fc81a15 commit 0dacb09
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@ A chrome extension to visualize JSON response in awesome Tree and Chart view wit

## Features

* ✅ Beautify JSON response from API url.
* ✅ Visual representation of response
* ✅ Depth traversing of JSON property using breadcrumbs
* ✅ Write custom JSON in JSON Input area
* ✅ URL filters to bypass on listed websites
* ✅ Switch Themes
* ✅ Custom CSS
* ✅ Cool User Interface.
* ✅ Copy property and value
* ✅ Access JSON in your console using 'json' keyword
✅ Beautify JSON response from API
✅ Visual representation of JSON
✅ Depth traversing of JSON property using breadcrumbs
✅ Write custom JSON in Input area
✅ Import local JSON file
✅ Download JSON file using Context Menu
✅ URL filters
✅ Change Themes
✅ Custom CSS
✅ Cool User Interface.
✅ Copy property and value
✅ Access JSON in your console using only `json` keyword

## Screen Shots
![Awesome JSON](https://raw.githubusercontent.com/rbrahul/Awesome-JSON/master/awesome-json-slideshow.gif "Awesome JSON an awesome Chrome extension to assist development")
Expand All @@ -28,7 +30,7 @@ A chrome extension to visualize JSON response in awesome Tree and Chart view wit



## Change Log:
## Change Log:

### Version 1.1.3 on 22-05-2020
**Bug Fixed**
Expand All @@ -37,7 +39,7 @@ A chrome extension to visualize JSON response in awesome Tree and Chart view wit
### Version 1.1.2 on 21-05-2020
**Bug Fixed**
* Index.html page is not loading because /static/js/main.js and /static/css/main.css was missing.
---
---
### Version 1.1.1 on 20-05-2020
**New Features:**
* Added option page to control UI and experience.
Expand Down
8 changes: 3 additions & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,9 @@ class App extends Component {

showLogInConsole() {
console.log(
"%cYou have access to JSON data in the console now : %cjson.property_name %cor %cjson['property-name']",
'font-size:14px; color: #4fdee5;background:black;padding:8px;',
'font-size:14px;color:orange;font-family:monospace;font-weight:bold;background:black;padding:8px;',
'font-size:14px;color:white;font-family:monospace;font-weight:bold;background:black;padding:8px;',
'font-size:14px;color:orange;font-family:monospace;font-weight:bold;background:black;padding:8px;',
'%cTo access the JSON data just write: %cjson',
'font-size:14px; color: #4fdee5;background:black;padding:8px;padding-right:0px',
'font-size:14px;color:orange;font-weight:bold;background:black;padding:8px;padding-left:0px',
);
}

Expand Down

0 comments on commit 0dacb09

Please sign in to comment.