JSON Finder

Browse JSON like you do it in Finder.

什么是JSON Finder?

JSON Finder是由Rapee Suveeranont开发的Chrome扩展程序,该扩展的主要功能是“Browse JSON like you do it in Finder.”。

扩展截图

screenshot
screenshot
screenshot

下载JSON Finder扩展crx文件

下载JSON Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        * 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"
    ]
}