Files
epub-tools/public/toolbox-app.json
T
zemion efd80eb18a
Verify / verify (push) Canceled after 0s
Release EPUB Tools 0.2.0
2026-09-02 08:53:49 +02:00

59 lines
2.0 KiB
JSON

{
"$schema": "https://git.add-ideas.de/lotobo/toolbox-sdk/raw/branch/main/schemas/toolbox-app.v1.schema.json",
"schemaVersion": 1,
"id": "de.add-ideas.epub-tools",
"name": "EPUB Tools",
"version": "0.2.0",
"description": "Read, inspect and repair EPUB publications locally in the browser.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["documents", "ebooks", "publishing"],
"tags": ["epub", "ebook", "metadata", "reader", "repair", "html", "markdown"],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": true,
"workers": true,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{ "mediaType": "application/epub+zip", "extensions": [".epub"] },
{ "mediaType": "text/html", "extensions": [".html", ".htm"] },
{ "mediaType": "application/xhtml+xml", "extensions": [".xhtml"] },
{ "mediaType": "text/markdown", "extensions": [".md", ".markdown"] },
{ "mediaType": "text/plain", "extensions": [".txt"] }
],
"produces": [
{ "mediaType": "application/epub+zip", "extensions": [".epub"] },
{ "mediaType": "text/plain", "extensions": [".txt"] },
{ "mediaType": "text/markdown", "extensions": [".md"] },
{ "mediaType": "text/html", "extensions": [".html"] },
{ "mediaType": "application/json", "extensions": [".json"] }
]
},
"capabilities": { "required": ["workers", "web-crypto"], "optional": [] },
"privacy": {
"processing": "local",
"fileUploads": true,
"telemetry": false,
"label": "Inputs stay in this browser; nothing is uploaded."
},
"source": {
"repository": "https://git.add-ideas.de/lotobo/epub-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/epub-tools"
}
]
}