JsonDiscovery

Browser extension that changes the way you're viewing JSON

Qu'est-ce que JsonDiscovery ?

JsonDiscovery est une extension Chrome développée par Discovery.js, et sa fonction principale est "Browser extension that changes the way you're viewing JSON".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension JsonDiscovery

Téléchargez les fichiers d'extension JsonDiscovery au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Most exciting features:
- Show JSON as an interactive tree with highlighting
- Easy an object or an array copy to clipboard
- Data structure signature (like in TypeScript)
- Data transformation with a query using Jora, suggestions on a query typing
- Customisation of JSON data presentation (using tables, lists and so on)
- Customisation (report) sharing by a link
- Works on any page with a valid JSON – URL/content type doesn't matter
- Works on local files, if it's enabled on extension's settings page (navigate to chrome://extensions, find JsonDiscovery, click "Details" button, then toggle "Allow access to file URLs" switch)
- Works offline (doesn't perform any network request)

Read more:
- on Medium: https://blog.usejournal.com/changing-a-way-were-viewing-json-in-a-browser-51eda9103fa2
- on Habr (in Russian): https://habr.com/ru/post/461185/
Extension is open source project: https://github.com/discoveryjs/browser-extension-json-discovery
Built on Discovery.js projects (https://github.com/discoveryjs/discovery)                    

Informations de Base sur l'Extension

Nom JsonDiscovery JsonDiscovery
ID pamhglogfolfbmlpnenhpeholpnlcclo
URL Officiel https://chromewebstore.google.com/detail/jsondiscovery/pamhglogfolfbmlpnenhpeholpnlcclo
Description Browser extension that changes the way you're viewing JSON
Taille du Fichier 383 KB
Nombre d'Installations 5,723
Version Actuelle 1.13.4
Dernière Mise à Jour 2023-10-03
Date de Publication 2020-05-20
Évaluation 4.86/5 Total 43 Évaluations
Développeur Discovery.js
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/discoveryjs/browser-extension-json-discovery
URL de la Page d'Aide https://github.com/discoveryjs/browser-extension-json-discovery/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.13.4",
    "name": "JsonDiscovery",
    "short_name": "JsonDiscovery",
    "description": "Browser extension that changes the way you're viewing JSON",
    "author": "exdis",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "init.js"
            ],
            "run_at": "document_start",
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "discovery.css",
        "discovery.js",
        "discovery-esm.js",
        "preloader.css",
        "icons\/*",
        "assets\/*"
    ],
    "offline_enabled": true
}