+50
-3
@@ -3,12 +3,22 @@
|
||||
"schemaVersion": 1,
|
||||
"id": "de.add-ideas.diff-tools",
|
||||
"name": "Diff Tools",
|
||||
"version": "0.1.0",
|
||||
"description": "Compare text and structured data locally in the browser.",
|
||||
"version": "0.2.0",
|
||||
"description": "Compare files and directories or perform bounded three-way merges locally.",
|
||||
"entry": "./",
|
||||
"icon": "./favicon.svg",
|
||||
"categories": ["developer", "files", "productivity"],
|
||||
"tags": ["diff", "compare", "json", "xml", "csv", "patch"],
|
||||
"tags": [
|
||||
"diff",
|
||||
"compare",
|
||||
"json",
|
||||
"xml",
|
||||
"csv",
|
||||
"patch",
|
||||
"directory",
|
||||
"manifest",
|
||||
"merge"
|
||||
],
|
||||
"integration": {
|
||||
"contextVersion": 1,
|
||||
"launchModes": ["navigate", "new-tab"],
|
||||
@@ -21,6 +31,43 @@
|
||||
"crossOriginIsolated": false,
|
||||
"topLevelContext": false
|
||||
},
|
||||
"io": {
|
||||
"accepts": [
|
||||
{
|
||||
"mediaType": "text/*",
|
||||
"extensions": [".txt", ".md", ".csv", ".xml"],
|
||||
"label": "Text, CSV and XML files"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/json",
|
||||
"extensions": [".json"],
|
||||
"label": "JSON documents and directory manifests"
|
||||
},
|
||||
{
|
||||
"mediaType": "*/*",
|
||||
"extensions": [],
|
||||
"label": "Files selected for bounded directory hashing"
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
{
|
||||
"mediaType": "text/x-diff",
|
||||
"extensions": [".diff", ".patch"],
|
||||
"label": "Unified and JSON patches"
|
||||
},
|
||||
{
|
||||
"mediaType": "text/plain",
|
||||
"extensions": [".txt"],
|
||||
"label": "Three-way merge result"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/json",
|
||||
"extensions": [".json"],
|
||||
"label": "Diff, merge and directory-manifest reports"
|
||||
}
|
||||
]
|
||||
},
|
||||
"capabilities": { "required": ["workers"], "optional": ["web-crypto"] },
|
||||
"privacy": {
|
||||
"processing": "local",
|
||||
"fileUploads": true,
|
||||
|
||||
Reference in New Issue
Block a user