JSON Viewer Pro
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
Τι είναι το JSON Viewer Pro;
Το JSON Viewer Pro είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rahul Baruri, και η κύρια λειτουργία του είναι "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης JSON Viewer Pro
Λήψη αρχείων επέκτασης JSON Viewer Pro σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options.
✅ Completely Free and no advertisements.
Core features:
✅ Beautify JSON response from API
✅ Visual representation of JSON with Chart
✅ 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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | eifflpmocdbdmepbjaopkkhbfmdgijcc |
| Επίσημο URL | https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc |
| Περιγραφή | A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅… |
| Μέγεθος Αρχείου | 338 KB |
| Αριθμός Εγκαταστάσεων | 385,193 |
| Τρέχουσα Έκδοση | 1.0.1 |
| Τελευταία Ενημέρωση | 2021-03-21 |
| Ημερομηνία Δημοσίευσης | 2020-10-04 |
| Αξιολόγηση | 4.77/5 Συνολικά 111 Αξιολογήσεις |
| Προγραμματιστής | Rahul Baruri |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/rbrahul/Awesome-JSON-Viewer |
| Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/rbrahul/Awesome-JSON-Viewer |
| Υποστηριζόμενες Γλώσσες | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JSON Viewer Pro",
"short_name": "JSON Viewer",
"offline_enabled": true,
"version": "1.0.1",
"manifest_version": 2,
"icons": {
"16": "images\/icons\/icon-16.png",
"38": "images\/icons\/icon-32.png",
"128": "images\/icons\/icon-128.png"
},
"background": {
"scripts": [
"\/js\/background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"\/js\/contentScript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": "images\/icons\/icon-16.png"
},
"permissions": [
"*:\/\/*\/*",
"contextMenus"
],
"web_accessible_resources": [
"\/js\/main.js",
"\/css\/main.css",
"\/css\/themes\/mdn.css",
"options.html",
"images\/icons\/gear.png"
]
} | |