Files
font-tools/src/toolbox/manifest.source.json
T
zemion 873cf3c04b
Verify / verify (push) Canceled after 0s
Release Font Tools 0.2.0
2026-09-02 12:18:37 +02:00

98 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.font-tools",
"name": "Font Tools",
"version": "0.2.0",
"description": "Inspect, compare and prepare fonts locally.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["design", "developer"],
"tags": [
"font",
"ttf",
"otf",
"ttc",
"otc",
"woff",
"glyph",
"typography",
"subset"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
"embedding": "unsupported"
},
"requirements": {
"secureContext": false,
"workers": true,
"indexedDb": false,
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "font/ttf",
"extensions": [".ttf"]
},
{
"mediaType": "font/otf",
"extensions": [".otf"]
},
{
"mediaType": "font/collection",
"extensions": [".ttc", ".otc"]
},
{
"mediaType": "font/woff",
"extensions": [".woff"]
},
{
"mediaType": "font/woff2",
"extensions": [".woff2"]
}
],
"produces": [
{
"mediaType": "text/css",
"extensions": [".css"]
},
{
"mediaType": "application/json",
"extensions": [".json"]
},
{
"mediaType": "font/ttf",
"extensions": [".ttf"]
},
{
"mediaType": "font/otf",
"extensions": [".otf"]
}
]
},
"capabilities": {
"required": ["workers"],
"optional": []
},
"privacy": {
"processing": "local",
"fileUploads": true,
"telemetry": false,
"label": "Font files and preview text remain in this browser."
},
"source": {
"repository": "https://git.add-ideas.de/lotobo/font-tools",
"license": "GPL-3.0-or-later"
},
"actions": [
{
"id": "source",
"label": "Source",
"url": "https://git.add-ideas.de/lotobo/font-tools"
}
]
}