+82
-4
@@ -3,12 +3,23 @@
|
||||
"schemaVersion": 1,
|
||||
"id": "de.add-ideas.data-tools",
|
||||
"name": "Data Tools",
|
||||
"version": "0.1.0",
|
||||
"description": "Inspect, query and convert structured data locally in the browser.",
|
||||
"version": "0.2.0",
|
||||
"description": "Inspect, infer, edit, query and loss-aware convert structured data locally.",
|
||||
"entry": "./",
|
||||
"icon": "./favicon.svg",
|
||||
"categories": ["data", "developer", "documents"],
|
||||
"tags": ["json", "yaml", "toml", "xml", "csv", "tsv", "ndjson"],
|
||||
"tags": [
|
||||
"json",
|
||||
"yaml",
|
||||
"toml",
|
||||
"xml",
|
||||
"csv",
|
||||
"tsv",
|
||||
"ndjson",
|
||||
"schema",
|
||||
"convert",
|
||||
"edit"
|
||||
],
|
||||
"integration": {
|
||||
"contextVersion": 1,
|
||||
"launchModes": ["navigate", "new-tab"],
|
||||
@@ -21,9 +32,76 @@
|
||||
"crossOriginIsolated": false,
|
||||
"topLevelContext": false
|
||||
},
|
||||
"io": {
|
||||
"accepts": [
|
||||
{
|
||||
"mediaType": "application/json",
|
||||
"extensions": [".json"],
|
||||
"label": "JSON"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/yaml",
|
||||
"extensions": [".yaml", ".yml"],
|
||||
"label": "YAML"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/toml",
|
||||
"extensions": [".toml"],
|
||||
"label": "TOML"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/xml",
|
||||
"extensions": [".xml"],
|
||||
"label": "XML"
|
||||
},
|
||||
{
|
||||
"mediaType": "text/csv",
|
||||
"extensions": [".csv", ".tsv"],
|
||||
"label": "CSV and TSV"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/x-ndjson",
|
||||
"extensions": [".ndjson", ".jsonl"],
|
||||
"label": "NDJSON"
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
{
|
||||
"mediaType": "application/json",
|
||||
"extensions": [".json"],
|
||||
"label": "JSON and inferred JSON Schema"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/yaml",
|
||||
"extensions": [".yaml"],
|
||||
"label": "YAML"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/toml",
|
||||
"extensions": [".toml"],
|
||||
"label": "TOML"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/xml",
|
||||
"extensions": [".xml"],
|
||||
"label": "XML"
|
||||
},
|
||||
{
|
||||
"mediaType": "text/csv",
|
||||
"extensions": [".csv", ".tsv"],
|
||||
"label": "CSV and TSV"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/x-ndjson",
|
||||
"extensions": [".ndjson"],
|
||||
"label": "NDJSON"
|
||||
}
|
||||
]
|
||||
},
|
||||
"capabilities": { "required": ["workers"], "optional": [] },
|
||||
"privacy": {
|
||||
"processing": "local",
|
||||
"fileUploads": false,
|
||||
"fileUploads": true,
|
||||
"telemetry": false,
|
||||
"label": "Inputs stay in this browser; nothing is uploaded."
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user