Bang JSON workspace

Frontend JSON workspace

Bang JSON workspace란 무엇입니까?

Bang JSON workspace은(는) Robert Xue에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Frontend JSON workspace"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Frontend JSON workspace, helping a developer to quickly understand an API without writing any web scrapping scripts. It focuses on browsing, querying and traversing a JSON instead of simply visualizing it.

Try http://httpbin.org/get#hash?foo=bar after install and see the difference!

Updates in v0.1.7:
- Bang is now a dismissible popup, compatible with all JSON viewer plugins
- Improved UI for focusing on JSON contents
- Easy switch between array's table view and schema view

Highlights:
- Display the key value structure of an object instead of the fine detail
- Provides a table view for arrays
- Supports traversing array elements one by one
- Enable you to check the schema of an array
- Enable you to check the value of a specified key inside an array
- Supports any Javascript expression's value as input
- Supports local json file, if enabled in extension page

- The raw json response from an API will be stored into a local variable called bang, and you can either use the browsing panel to play around with data or write custom javascript expressions like 'Object.size(bang)' or even 'bang.map(function(row){ return row.name; })'

- Supports underscore, d3 grammar when writing custom javascript expressions                    

확장 프로그램 기본 정보

이름 Bang JSON workspace Bang JSON workspace
ID dfmpfciemnocjnpfddbefbhhamhjcmgl
공식 URL https://chrome.google.com/webstore/detail/bang-json-workspace/dfmpfciemnocjnpfddbefbhhamhjcmgl
설명 Frontend JSON workspace
파일 크기 402 KB
설치 횟수 522
현재 버전 0.1.7.6
최근 업데이트 2015-03-09
출시 날짜 2015-03-09
평점 4.42/5 총 12 개의 평점
개발자 Robert Xue
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/roboxue/Bang
도움말 페이지 URL https://github.com/roboxue/Bang/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bang JSON workspace",
    "short_name": "bang",
    "version": "0.1.7.6",
    "icons": {
        "128": "bang.png"
    },
    "description": "Frontend JSON workspace",
    "author": "Robert Xue",
    "homepage_url": "https:\/\/github.com\/roboxue\/bang",
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "lib\/require.js",
                "master.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "lib\/*",
        "app\/*",
        "css\/bootstrap.css",
        "css\/bang.css",
        "fonts\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}