JSON Finder

Browse JSON like you do it in Finder.

JSON Finder क्या है?

JSON Finder Rapee Suveeranont द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browse JSON like you do it in Finder."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JSON Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}