Release Image Tools 0.2.0
Verify / verify (push) Canceled after 0s

This commit is contained in:
2026-09-02 07:56:38 +02:00
parent 83926457b2
commit 79d223c347
36 changed files with 2231 additions and 245 deletions
+60 -4
View File
@@ -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."
},