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文件

下載Bang JSON workspace擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        ]
    }
}