BetterDiscordApp-v2/tests/plugins/Example/config.json

104 lines
2.9 KiB
JSON

{
"info": {
"name": "Example Plugin",
"authors": ["Jiiks"],
"version": 1.0,
"description": "Example Plugin Description"
},
"main": "index.js",
"defaultConfig": [
{
"id": "test-setting-1",
"type": "bool",
"value": false,
"text": "Bool Test Setting",
"hint": "Bool Test Setting Hint"
},
{
"id": "test-setting-2",
"type": "text",
"value": "defaultValue",
"text": "Text Test Setting",
"hint": "Text Test Setting Hint"
},
{
"id": "test-setting-3",
"type": "bool",
"value": false,
"text": "Bool Test Setting 2",
"hint": "Bool Test Setting Hint 2"
},
{
"id": "test-setting-4",
"type": "bool",
"value": false,
"text": "Bool Test Setting 3",
"hint": "Bool Test Setting Hint 3"
},
{
"id": "test-setting-5",
"type": "bool",
"value": false,
"text": "Bool Test Setting 4",
"hint": "Bool Test Setting Hint 4"
},
{
"id": "test-setting-6",
"type": "bool",
"value": false,
"text": "Bool Test Setting 5",
"hint": "Bool Test Setting Hint 5"
},
{
"id": "test-setting-7",
"type": "bool",
"value": false,
"text": "Bool Test Setting 6",
"hint": "Bool Test Setting Hint 6"
},
{
"id": "test-setting-8",
"type": "bool",
"value": false,
"text": "Bool Test Setting 7",
"hint": "Bool Test Setting Hint 7"
},
{
"id": "test-setting-9",
"type": "bool",
"value": false,
"text": "Bool Test Setting 8",
"hint": "Bool Test Setting Hint 8"
},
{
"id": "test-setting-10",
"type": "bool",
"value": false,
"text": "Bool Test Setting 9",
"hint": "Bool Test Setting Hint 9"
},
{
"id": "test-setting-file-1",
"type": "file",
"value": null,
"text": "Test File Setting 1",
"hint": "File selector with the default options."
},
{
"id": "test-setting-file-2",
"type": "file",
"value": null,
"text": "Test File Setting 2",
"hint": "File selector with custom button text and the ability to open directories and multiple items.",
"dialogOptions": {
"buttonLabel": "Select",
"properties": [
"openFile",
"openDirectory",
"multiSelections"
]
}
}
]
}