JSON Inspector - Explore your JSON files
JSON Inspector allows you to parse and explore your JSON files with ease in your browser
Cos'è JSON Inspector - Explore your JSON files?
JSON Inspector - Explore your JSON files è un'estensione di Chrome sviluppata da MUJO LLC, e la sua funzione principale è "JSON Inspector allows you to parse and explore your JSON files with ease in your browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione JSON Inspector - Explore your JSON files
Scarica i file di estensione JSON Inspector - Explore your JSON files in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
JSON inspector is a modern take on a JSON explorer. This allows you to view the data in the same way you would view data in you dev-tools.
There is a few new concepts:
- Get out of the way unless needed, older plugin immediately formatted JSON. This plugin keeps the page how it is to allow for easy copy paste.
- Inspect in different context, just like how you inspect in html in a different window. With this plugin we open a modal with the content inside of it to leave the original content alone while having a context to inspect.
- We are also open source!
https://github.com/mujo-code/json-inspector Informazioni di Base sull'Estensione
| Nome | |
| ID | ddjdpbdnpfkdacbbeppjhkfehopmobeg |
| URL Ufficiale | https://chromewebstore.google.com/detail/json-inspector-explore-yo/ddjdpbdnpfkdacbbeppjhkfehopmobeg |
| Descrizione | JSON Inspector allows you to parse and explore your JSON files with ease in your browser |
| Dimensione del File | 268 KB |
| Conteggio Installazioni | 36 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2021-07-18 |
| Data di Pubblicazione | 2021-07-18 |
| Sviluppatore | MUJO LLC |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/mujo-code/json-inspector |
| URL della Pagina della Politica sulla Privacy | https://getmujo.com/privacy |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "1.0.0",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"192": "icons\/icon-192.png",
"512": "icons\/icon-512.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"content.js"
]
}
],
"minimum_chrome_version": "88"
} | |