63 lines
1.9 KiB
JSON
63 lines
1.9 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.subtitle-tools",
|
|
"name": "Subtitle Tools",
|
|
"version": "0.2.0",
|
|
"description": "Edit, navigate, synchronize and convert subtitles locally.",
|
|
"entry": "./",
|
|
"icon": "./favicon.svg",
|
|
"categories": ["media", "text", "productivity"],
|
|
"tags": ["subtitles", "captions", "srt", "webvtt", "ass", "ttml", "timing"],
|
|
"integration": {
|
|
"contextVersion": 1,
|
|
"launchModes": ["navigate", "new-tab"],
|
|
"embedding": "unsupported"
|
|
},
|
|
"requirements": {
|
|
"secureContext": false,
|
|
"workers": false,
|
|
"indexedDb": false,
|
|
"crossOriginIsolated": false,
|
|
"topLevelContext": false
|
|
},
|
|
"io": {
|
|
"accepts": [
|
|
{ "mediaType": "text/plain", "extensions": [".srt", ".ass", ".ssa"] },
|
|
{ "mediaType": "text/vtt", "extensions": [".vtt"] },
|
|
{
|
|
"mediaType": "application/ttml+xml",
|
|
"extensions": [".ttml", ".dfxp", ".xml"]
|
|
},
|
|
{ "mediaType": "audio/*", "extensions": [] },
|
|
{ "mediaType": "video/*", "extensions": [] }
|
|
],
|
|
"produces": [
|
|
{ "mediaType": "text/plain", "extensions": [".srt", ".ass"] },
|
|
{ "mediaType": "text/vtt", "extensions": [".vtt"] },
|
|
{ "mediaType": "application/ttml+xml", "extensions": [".ttml"] }
|
|
]
|
|
},
|
|
"capabilities": {
|
|
"required": [],
|
|
"optional": ["workers", "web-audio", "media-playback"]
|
|
},
|
|
"privacy": {
|
|
"processing": "local",
|
|
"fileUploads": true,
|
|
"telemetry": false,
|
|
"label": "Inputs stay in this browser; nothing is uploaded."
|
|
},
|
|
"source": {
|
|
"repository": "https://git.add-ideas.de/lotobo/subtitle-tools",
|
|
"license": "GPL-3.0-or-later"
|
|
},
|
|
"actions": [
|
|
{
|
|
"id": "source",
|
|
"label": "Source",
|
|
"url": "https://git.add-ideas.de/lotobo/subtitle-tools"
|
|
}
|
|
]
|
|
}
|