JSON Finder

Browse JSON like you do it in Finder.

Cos'è JSON Finder?

JSON Finder è un'estensione di Chrome sviluppata da Rapee Suveeranont, e la sua funzione principale è "Browse JSON like you do it in Finder.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione JSON Finder

Scarica i file di estensione JSON Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        * 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                    

Informazioni di Base sull'Estensione

Nome JSON Finder JSON Finder
ID flhdcaebggmmpnnaljiajhihdfconkbj
URL Ufficiale https://chromewebstore.google.com/detail/json-finder/flhdcaebggmmpnnaljiajhihdfconkbj
Descrizione Browse JSON like you do it in Finder.
Dimensione del File 72.77 KB
Conteggio Installazioni 5,047
Versione Corrente 0.1.0
Ultimo Aggiornamento 2017-01-21
Data di Pubblicazione 2017-01-20
Valutazione 4.05/5 Totale 19 Valutazioni
Sviluppatore Rapee Suveeranont
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rapee/jsonfinder
Lingue Supportate 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"
    ]
}