JSON Finder

Browse JSON like you do it in Finder.

JSON Finderคืออะไร?

JSON Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rapee Suveeranont และคุณลักษณะหลักของมันคือ "Browse JSON like you do it in Finder."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย JSON Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        * View like you browse with OSX Finder.
* Keep track of deep object or array.
* Find in JSON and jump to matches.
* Mouse or arrow keys to navigate.
* Support browser back/forward.

Change Log
0.1.0
* FIX: Scoped CSS, stop breaking CSS on other sites.
0.0.9
* FIX: Minor bugs fixed
0.0.8
* NEW: Highlight matched keyword when search
0.0.7
* NEW: Migrate codebase to Backbone.js (v1.0.0)


Github: https://github.com/rapee/jsonfinder

License: MIT License                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JSON Finder JSON Finder
ID flhdcaebggmmpnnaljiajhihdfconkbj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/json-finder/flhdcaebggmmpnnaljiajhihdfconkbj
คำอธิบาย Browse JSON like you do it in Finder.
ขนาดไฟล์ 72.77 KB
จำนวนการติดตั้ง 5,047
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2017-01-21
วันที่เผยแพร่ 2017-01-20
คะแนน 4.05/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Rapee Suveeranont
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rapee/jsonfinder
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Finder",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Browse JSON like you do it in Finder.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "jquery.js",
                "underscore.js",
                "backbone.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "homepage_url": "https:\/\/github.com\/rapee\/jsonfinder",
    "web_accessible_resources": [
        "style.css",
        "template.html",
        "jquery.js",
        "underscore.js",
        "backbone.js"
    ]
}