JsonDiscovery

Browser extension that changes the way you're viewing JSON

JsonDiscoveryคืออะไร?

JsonDiscovery เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Discovery.js และคุณลักษณะหลักของมันคือ "Browser extension that changes the way you're viewing JSON"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JsonDiscovery

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
}