JSON pathfinder

Formats websites containing JSON and allows to search them using jsonpath

什麼是JSON pathfinder?

JSON pathfinder是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Formats websites containing JSON and allows to search them using jsonpath”。

擴展截圖

screenshot

下載JSON pathfinder擴展crx文件

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

擴展使用說明

                        Formats websites containing JSON and allows to search them using jsonpath                    

擴展基本資訊

名稱 JSON pathfinder JSON pathfinder
ID cgpbbgjlljobcemhhimjknkldpinacpn
官方網址 https://chromewebstore.google.com/detail/json-pathfinder/cgpbbgjlljobcemhhimjknkldpinacpn
簡介 Formats websites containing JSON and allows to search them using jsonpath
檔案大小 561 KB
安裝次數 9,247
目前版本 0.0.1
更新時間 2016-10-31
上架時間 2016-10-31
評分 2.55/5 共 11 次評分
開發者 Unknown
付費類型 free
擴展官網 https://github.com/radek-novak/json-commander
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON pathfinder",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "",
    "homepage_url": "https:\/\/github.com\/radek-novak\/json-commander",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/icon_128.png",
        "32": "icons\/icon_32.png"
    },
    "background": {
        "scripts": [
            "build\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage"
    ]
}