Bang JSON workspace

Frontend JSON workspace

O que é Bang JSON workspace?

Bang JSON workspace é uma extensão do Chrome desenvolvida por Robert Xue, e sua principal característica é "Frontend JSON workspace".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bang JSON workspace

Baixe arquivos de extensão Bang JSON workspace no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Bang JSON workspace Bang JSON workspace
ID dfmpfciemnocjnpfddbefbhhamhjcmgl
URL Oficial https://chrome.google.com/webstore/detail/bang-json-workspace/dfmpfciemnocjnpfddbefbhhamhjcmgl
Descrição Frontend JSON workspace
Tamanho do Arquivo 402 KB
Contagem de Instalações 522
Versão Atual 0.1.7.6
Última Atualização 2015-03-09
Data de Publicação 2015-03-09
Classificação 4.42/5 Total de 12 Avaliações
Desenvolvedor Robert Xue
Tipo de Pagamento free
Site da Extensão http://github.com/roboxue/Bang
URL da Página de Ajuda https://github.com/roboxue/Bang/issues
Idiomas Suportados 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"
        ]
    }
}