json-or-cobol-to-md-schema

Turn JSON Res or Req bodies, COBOL files (.CBL or .LK), or bare JSON objects into a Markdown table defining its schema

json-or-cobol-to-md-schema란 무엇입니까?

json-or-cobol-to-md-schema은(는) atlc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn JSON Res or Req bodies, COBOL files (.CBL or .LK), or bare JSON objects into a Markdown table defining its schema"입니다.

확장 프로그램 스크린샷

screenshot

json-or-cobol-to-md-schema 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ******************** NOTE TO OTHER DEVELOPERS **************************
This was developed for my organization's purposes, and consequently looks through objects matching our exact specific format. There is no guarantee it will work with other standards; a guide is available at << FORMAT GUIDE ON GITHUB >> on what it expects. If there's some other format you'd like me to implement, please open up an issue on the Github repo and I'll happily add that to the implementation queue.
************************************************************************

This adds a feature to the right click menu to give you the ability to turn highlighted COBOL source code, a COBOL linkage library (.LK), JSON Request or Response bodies, or just a singular plain object into a Markdown table briefly describing the schema, in a format like << BELOW >>.

Alternatively, the keyboard shortcut Ctrl+Alt+Z will bring up a prompt box to where you can paste another JSON body to the same effect.

Depending on how far along the JSON parsing process this is - if you are to send an invalid JSON body, it will fail silently if early (AKA if you didn't send a JSON body but something else altogether), or later will let you know if it's a bad JSON body (I.E. a bad field or broken syntax). You must select the whole JSON body, and only the JSON body.

The two COBOL parsers use regex, so any selections that capture the full request will work. It's better to select more than less in this case.                    

확장 프로그램 기본 정보

이름 json-or-cobol-to-md-schema json-or-cobol-to-md-schema
ID fkenokkcpcdhipimcljpdamfaggbbelh
공식 URL https://chrome.google.com/webstore/detail/fkenokkcpcdhipimcljpdamfaggbbelh
설명 Turn JSON Res or Req bodies, COBOL files (.CBL or .LK), or bare JSON objects into a Markdown table defining its schema
파일 크기 4.67 KB
설치 횟수 38
현재 버전 1.1.0
최근 업데이트 2019-10-28
출시 날짜 2019-10-28
개발자 atlc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/atlc/JSON-or-COBOL-to-MD-schema-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "json-or-cobol-to-md-schema",
    "version": "1.1.0",
    "description": "Turn JSON Res or Req bodies, COBOL files (.CBL or .LK), or bare JSON objects into a Markdown table defining its schema",
    "manifest_version": 2,
    "permissions": [
        "contextMenus"
    ],
    "commands": {
        "call-conversion-function": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "Call up the prompt for the JSON translation function"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}