-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUI_Config.json
More file actions
62 lines (62 loc) · 2.31 KB
/
Copy pathUI_Config.json
File metadata and controls
62 lines (62 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"CsvPath": {
"group": "Core",
"tooltip": "Specify the path to the CSV file where quotes will be saved.",
"label": "Path to CSV File",
"value": "C:\\quotes.csv",
"type": "textbox"
},
"CommandName": {
"group": "Core",
"tooltip": "Specify the command name to trigger saving quotes.",
"label": "Command Name",
"value": "!\u540d\u8a00",
"type": "textbox"
},
"CustomMessage": {
"group": "Core",
"tooltip": "Specify the custom message to display after saving a quote. Supports {quote}, {date}, {streamer_name}, and {clip_url} (when clip creation is enabled).",
"label": "Custom Message",
"value": "\u300c{quote}\u300d by {streamer_name} on {date}",
"type": "textbox"
},
"EnableClipCreation": {
"group": "Twitch API",
"tooltip": "Enable automatic clip creation when a quote is saved.",
"label": "Enable Clip Creation",
"value": "false",
"type": "checkbox"
},
"ClipDuration": {
"group": "Twitch API",
"tooltip": "Duration of the clip in seconds (5-60 seconds). The quote text will be used as the clip title.",
"label": "Clip Duration (seconds)",
"value": "30",
"type": "textbox"
},
"OpenTokenGenerator": {
"group": "Twitch API",
"type": "button",
"label": "Get Client ID & OAuth Token",
"tooltip": "Opens https://twitchtokengenerator.com/ in your browser to generate Twitch credentials. Only the clips:edit scope is required.",
"function": "OpenTokenGenerator",
"wsevent": ""
},
"TwitchOAuthToken": {
"group": "Twitch API",
"tooltip": "Your Twitch Access token with clips:edit scope. Get it from https://twitchtokengenerator.com/ (Required for clip creation)",
"label": "Twitch Access Token",
"value": "",
"type": "textbox",
"inputType": "password"
},
"TwitchClientId": {
"group": "Twitch API",
"tooltip": "Your Twitch Client ID. Get it from https://twitchtokengenerator.com/ (Required for clip creation)",
"label": "Twitch Client ID",
"value": "",
"type": "textbox",
"inputType": "password"
},
"output_file": "Settings/save_quotes_settings.json"
}