JSON Finder

Browse JSON like you do it in Finder.

JSON Finder란 무엇입니까?

JSON Finder은(는) Rapee Suveeranont에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse JSON like you do it in Finder."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

JSON Finder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        * 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"
    ]
}