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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}