mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "Test Plugin",
|
|
"slug": "test",
|
|
"version": "1.0.0",
|
|
"description": "This is a test plugin",
|
|
"extensions": [
|
|
{
|
|
"target": "item.detail.actions",
|
|
"name": "test",
|
|
"label": "Test Action",
|
|
"labelKey": "TestAction"
|
|
}
|
|
],
|
|
"config": {
|
|
"title": "Test Plugin Configuration",
|
|
"titleKey": "TestPluginConfiguration",
|
|
"description": "This is a test plugin",
|
|
"descriptionKey": "TestPluginConfigurationDescription",
|
|
"formFields": [
|
|
{
|
|
"name": "apiKey",
|
|
"label": "API Key",
|
|
"labelKey": "LabelApiKey",
|
|
"type": "text",
|
|
"required": false
|
|
},
|
|
{
|
|
"name": "requestAddress",
|
|
"label": "Request Address",
|
|
"labelKey": "LabelRequestAddress",
|
|
"type": "text",
|
|
"required": true
|
|
},
|
|
{
|
|
"name": "enable",
|
|
"label": "Enable",
|
|
"labelKey": "LabelEnable",
|
|
"type": "checkbox"
|
|
}
|
|
]
|
|
},
|
|
"localization": {
|
|
"en-us": {
|
|
"TestAction": "Test Action",
|
|
"LabelApiKey": "API Key",
|
|
"LabelEnable": "Enable",
|
|
"TestPluginConfiguration": "Test Plugin Configuration",
|
|
"TestPluginConfigurationDescription": "This is a test plugin",
|
|
"LabelRequestAddress": "Request Address"
|
|
}
|
|
}
|
|
}
|