91 lines
2.6 KiB
JSON
91 lines
2.6 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.office-tools",
|
|
"name": "Office Tools",
|
|
"version": "0.2.0",
|
|
"description": "Open and inspect documents, spreadsheets and presentations locally in the browser.",
|
|
"entry": "./",
|
|
"icon": "./favicon.svg",
|
|
"categories": ["documents", "office", "productivity"],
|
|
"tags": [
|
|
"document",
|
|
"spreadsheet",
|
|
"presentation",
|
|
"docx",
|
|
"xlsx",
|
|
"pptx",
|
|
"odt",
|
|
"ods",
|
|
"odp",
|
|
"viewer"
|
|
],
|
|
"integration": {
|
|
"contextVersion": 1,
|
|
"launchModes": ["navigate", "new-tab"],
|
|
"embedding": "unsupported"
|
|
},
|
|
"requirements": {
|
|
"secureContext": false,
|
|
"workers": true,
|
|
"indexedDb": false,
|
|
"crossOriginIsolated": false,
|
|
"topLevelContext": false
|
|
},
|
|
"io": {
|
|
"accepts": [
|
|
{
|
|
"mediaType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
"extensions": [".docx", ".dotx", ".docm", ".dotm"]
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
"extensions": [".xlsx", ".xltx", ".xlsm", ".xltm"]
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
"extensions": [".pptx", ".potx", ".ppsx", ".pptm", ".potm", ".ppsm"]
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.oasis.opendocument.text",
|
|
"extensions": [".odt", ".ott"]
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.oasis.opendocument.spreadsheet",
|
|
"extensions": [".ods", ".ots"]
|
|
},
|
|
{
|
|
"mediaType": "application/vnd.oasis.opendocument.presentation",
|
|
"extensions": [".odp", ".otp"]
|
|
}
|
|
],
|
|
"produces": [
|
|
{
|
|
"mediaType": "application/vnd.oasis.opendocument.text",
|
|
"extensions": [".odt"]
|
|
},
|
|
{ "mediaType": "text/csv", "extensions": [".csv"] },
|
|
{ "mediaType": "text/plain", "extensions": [".txt"] },
|
|
{ "mediaType": "application/json", "extensions": [".json"] }
|
|
]
|
|
},
|
|
"capabilities": { "required": ["workers"], "optional": [] },
|
|
"privacy": {
|
|
"processing": "local",
|
|
"fileUploads": true,
|
|
"telemetry": false,
|
|
"label": "Office files stay in this browser; nothing is uploaded."
|
|
},
|
|
"source": {
|
|
"repository": "https://git.add-ideas.de/lotobo/office-tools",
|
|
"license": "GPL-3.0-or-later"
|
|
},
|
|
"actions": [
|
|
{
|
|
"id": "source",
|
|
"label": "Source",
|
|
"url": "https://git.add-ideas.de/lotobo/office-tools"
|
|
}
|
|
]
|
|
}
|