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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον atlc, και η κύρια λειτουργία του είναι "Turn JSON Res or Req bodies, COBOL files (.CBL or .LK), or bare JSON objects into a Markdown table defining its schema".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης json-or-cobol-to-md-schema
Λήψη αρχείων επέκτασης json-or-cobol-to-md-schema σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
******************** 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ![]() |
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 } } |