JsonDiscovery

Browser extension that changes the way you're viewing JSON

JsonDiscoveryとは何ですか?

JsonDiscoveryはDiscovery.jsによって開発されたChromeの拡張機能で、その主な機能は「Browser extension that changes the way you're viewing JSON」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

JsonDiscovery拡張機能のCRXファイルをダウンロード

JsonDiscovery拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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)                    

拡張機能の基本情報

名前 JsonDiscovery JsonDiscovery
ID pamhglogfolfbmlpnenhpeholpnlcclo
公式URL https://chromewebstore.google.com/detail/jsondiscovery/pamhglogfolfbmlpnenhpeholpnlcclo
説明 Browser extension that changes the way you're viewing JSON
ファイルサイズ 383 KB
インストール数 5,723
現在のバージョン 1.13.4
最終更新日 2023-10-03
公開日 2020-05-20
評価 4.86/5 合計 43 レビュー
開発者 Discovery.js
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/discoveryjs/browser-extension-json-discovery
ヘルプページのURL https://github.com/discoveryjs/browser-extension-json-discovery/issues
対応言語 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
}