JSONEye

专为爬虫工程师定制的JSON格式化工具,直接显示JSONPath,支持JSON和JSONP

JSONEye란 무엇입니까?

JSONEye은(는) https://kagura.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "专为爬虫工程师定制的JSON格式化工具,直接显示JSONPath,支持JSON和JSONP"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

JSONEye 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        自动显示所有元素JSONPath;
时间戳自动格式化显示;
字符串值是JSON,一键打开新窗口格式化;
字符串值是HTML,一键打开新窗口预览;
字符串值是Base64,一键解码;
格式化本地字符串,直接点击右上角小图标即可;
以上种种,单击即可复制到剪切板;                    

확장 프로그램 기본 정보

이름 JSONEye JSONEye
ID aehldoaeeknfbljnpnhmmedgnlfheadh
공식 URL https://chromewebstore.google.com/detail/jsoneye/aehldoaeeknfbljnpnhmmedgnlfheadh
설명 专为爬虫工程师定制的JSON格式化工具,直接显示JSONPath,支持JSON和JSONP
파일 크기 619 KB
설치 횟수 464
현재 버전 1.0.7
최근 업데이트 2020-06-12
출시 날짜 2020-06-12
평점 5.00/5 총 3 개의 평점
개발자 https://kagura.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jsoneye.cn/
도움말 페이지 URL https://jsoneye.cn/
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSONEye",
    "version": "1.0.7",
    "homepage_url": "https:\/\/jsoneye.cn",
    "description": "\u4e13\u4e3a\u722c\u866b\u5de5\u7a0b\u5e08\u5b9a\u5236\u7684JSON\u683c\u5f0f\u5316\u5de5\u5177\uff0c\u76f4\u63a5\u663e\u793aJSONPath\uff0c\u652f\u6301JSON\u548cJSONP",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/logo.png",
        "default_title": "JSONEye"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js",
            "js\/bignumber.min.js",
            "js\/FileSaver.min.js",
            "js\/jquery.json.js",
            "js\/jquery.json2xml.js",
            "js\/jquery.message.js",
            "js\/jquery.numberedtextarea.js",
            "js\/jquery.xml2json.js",
            "js\/json2.js",
            "js\/bootstrap.min.js",
            "js\/jsonlint.js",
            "js\/listener.js",
            "js\/toastr.js",
            "js\/content.js",
            "js\/option.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/content.js",
                "js\/jquery.min.js",
                "js\/toastr.js",
                "js\/bootstrap.min.js",
                "js\/jquery.json.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "*"
    ],
    "offline_enabled": true,
    "manifest_version": 2
}