+60
-4
@@ -3,12 +3,21 @@
|
||||
"schemaVersion": 1,
|
||||
"id": "de.add-ideas.image-tools",
|
||||
"name": "Image Tools",
|
||||
"version": "0.1.0",
|
||||
"description": "Edit and batch-process raster images locally in the browser.",
|
||||
"version": "0.2.0",
|
||||
"description": "Crop, resize, convert and batch-process static raster images locally.",
|
||||
"entry": "./",
|
||||
"icon": "./favicon.svg",
|
||||
"categories": ["graphics", "image", "productivity"],
|
||||
"tags": ["image", "resize", "crop", "convert", "compress"],
|
||||
"tags": [
|
||||
"image",
|
||||
"resize",
|
||||
"crop",
|
||||
"convert",
|
||||
"compress",
|
||||
"recipe",
|
||||
"batch",
|
||||
"zip"
|
||||
],
|
||||
"integration": {
|
||||
"contextVersion": 1,
|
||||
"launchModes": ["navigate", "new-tab"],
|
||||
@@ -21,9 +30,56 @@
|
||||
"crossOriginIsolated": false,
|
||||
"topLevelContext": false
|
||||
},
|
||||
"io": {
|
||||
"accepts": [
|
||||
{
|
||||
"mediaType": "image/png",
|
||||
"extensions": [".png"],
|
||||
"label": "Static PNG"
|
||||
},
|
||||
{
|
||||
"mediaType": "image/jpeg",
|
||||
"extensions": [".jpg", ".jpeg"],
|
||||
"label": "JPEG"
|
||||
},
|
||||
{
|
||||
"mediaType": "image/webp",
|
||||
"extensions": [".webp"],
|
||||
"label": "Static WebP when browser-supported"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/json",
|
||||
"extensions": [".json"],
|
||||
"label": "Image transform recipe"
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
{ "mediaType": "image/png", "extensions": [".png"], "label": "PNG" },
|
||||
{ "mediaType": "image/jpeg", "extensions": [".jpg"], "label": "JPEG" },
|
||||
{
|
||||
"mediaType": "image/webp",
|
||||
"extensions": [".webp"],
|
||||
"label": "WebP when browser-supported"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/zip",
|
||||
"extensions": [".zip"],
|
||||
"label": "Bounded batch ZIP"
|
||||
},
|
||||
{
|
||||
"mediaType": "application/json",
|
||||
"extensions": [".json"],
|
||||
"label": "Recipe and processing reports"
|
||||
}
|
||||
]
|
||||
},
|
||||
"capabilities": {
|
||||
"required": ["canvas-2d", "workers"],
|
||||
"optional": ["create-image-bitmap", "offscreen-canvas"]
|
||||
},
|
||||
"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