forked from steveseguin/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleapi.html
601 lines (501 loc) Β· 21.5 KB
/
sampleapi.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
<html>
<head>
<meta charset="utf-8"/>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="./nes.min.css" rel="stylesheet" />
<style>
html, body, pre, code, kbd, samp {
font-family:"Press Start 2P";
}
body{
margin:1%;
border:0;
background-image: linear-gradient(to left, #e1c5d5, #ddc5da, #d8c6e0, #d1c7e5, #c8c9e9, #c1cded, #bad2f0, #b4d6f2, #b1ddf3, #b1e4f3, #b4eaf0, #bbf0ed);
width:96%;
height:100%;
}
button {
margin:10px 3px;
}
button, input, optgroup, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: 8px 12px;
}
button:active{
background-color:#BBB;
}
#incoming_messages {
overflow: auto;
height: calc(100% - 146px);
margin: 10px;
display: inline;
width: calc(100% - 51px);
word-break: break-word;
}
.inbound {
margin: 40px 0;
}
</style>
</head>
<body>
<h2>
Sample app using the Social Stream HTTP/WSS remote control API
</h2>
ππ»Make sure to have <b>&server</b> appended to the social stream dock.html URL if intending to send messages to it directly. (This includes dock-specific actions, like next-in-queue actions)<br />
<br /> Of course, also ensure you have matching session values; ( for example,ποΈ dock.html?session=xxxx&server)
<br /><br />
If sending messages/actions to the extension, you just need to make sure the extension is on and the enable-server toggle is enabled in the extension menu.
<br /><br />
See <a href='https://github.com/steveseguin/social_stream/blob/main/README.md#server-api-support' target='_blank'>this link for details</a> on how to add these commands to your stream deck or application.
<br /><br />
<div id="header"></div>
<div id="target_self"></div>
<div id="incoming_messages"></div>
<script>
function generateStreamID(){
var text = "";
var possible = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23456789";
for (var i = 0; i < 10; i++){
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
(function (w) {
w.URLSearchParams = w.URLSearchParams || function (searchString) {
var self = this;
self.searchString = searchString;
self.get = function (name) {
var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(self.searchString);
if (results == null) {
return null;
}
else {
return decodeURI(results[1]) || 0;
}
};
};
})(window);
var urlParams = new URLSearchParams(window.location.search);
window.onerror = function backupErr(errorMsg, url=false, lineNumber=false) {
console.error(errorMsg);
console.error(lineNumber);
console.error("Unhandeled Error occured"); //or any message
return false;
};
window.onbeforeunload = function() {
return "Dude, are you sure you want to leave? Think of the kittens!"; // prevents accidental page reloads.
}
var WID = "testOBSN";
if (urlParams.has("api")){
WID = urlParams.get("api");
} else if (urlParams.has("osc")){
WID = urlParams.get("osc");
} else if (urlParams.has("id")){
WID = urlParams.get("id");
} else if (urlParams.has("ID")){
WID = urlParams.get("ID");
} else if (urlParams.has("wid")){
WID = urlParams.get("wid");
} else if (urlParams.has("session")){
WID = urlParams.get("session");
} else {
WID = prompt("Enter your session ID here, or add it to the URL.") || generateStreamID(10);
var href = window.location.href;
var arr = href.split('?');
var newurl;
if (arr.length > 1 && arr[1] !== '') {
newurl = href + '&session=' + WID;
} else {
newurl = href + '?session=' + WID;
}
window.history.pushState({path: newurl.toString()}, '', newurl.toString());
}
var serverURL = "wss://api.overlay.ninja:443";
if (urlParams.has("server")){
serverURL = urlParams.get("server") || serverURL;
}
var socket = null;
var connecting = false;
var failedCount = 0;
var callbackID = parseInt(Math.random()*1000);
function connect(){
clearTimeout(connecting);
if (socket){
if (socket.readyState === socket.OPEN){return;}
try{
socket.close();
} catch(e){}
}
socket = new WebSocket(serverURL);
socket.onclose = function (){
failedCount+=1;
clearTimeout(connecting);
connecting = setTimeout(function(){connect();},100*(failedCount-1));
};
socket.onerror = function (){
failedCount+=1;
clearTimeout(connecting);
connecting = setTimeout(function(){connect();},100*failedCount);
};
socket.onopen = function (){
failedCount = 0;
try{
socket.send(JSON.stringify({"join":WID, "out":1, "in":2}));
} catch(e){
connecting = setTimeout(function(){connect();},1);
}
};
socket.addEventListener('message', function (event) {
if (event.data){
var data = JSON.parse(event.data);
console.log(data);
if ("callback" in data){
if (data.callback.value == callbackID){
alert("Received response. See developer console for the message.");
}
} else {
var ele = document.createElement("div");
ele.className = "inbound";
ele.innerText = event.data;
document.getElementById("incoming_messages").prepend(ele);
}
}
});
}
connect();
function sendGuestCommand(target, action, value=null){
sendMessage(JSON.stringify({"target":target, "action":action, "value":value}));
}
function sendMessage(msg){
if (socket.readyState !== socket.OPEN){
console.log("not connected; msg didn't send");
connect();
return;
}
try {
socket.send(msg);
} catch(e){
connecting = setTimeout(function(){connect();},100);
}
}
function log(msg){
console.log(msg);
}
function ajax(data) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
log("AJAX MESSAGE SENT SUCCESSFULL");
}
};
var action = false
if ("action" in data){
action=data['action'];
}
var value = "null"
if ("value" in data){
value=data['value'];
}
var apiid = false
if ("apiid" in data){
apiid=data['apiid'];
}
var target = "null";
if ("target" in data){
target=data['target'];
}
if (!action || !apiid){
alert("no action or api ID provided; request won't work");
} else {
var URL = "https://api.vdo.ninja/"+apiid+"/"+action+"/"+target+"/"+value;
xhttp.open("GET", URL, true);
xhttp.send();
}
}
function post(data) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
log("AJAX MESSAGE SENT SUCCESSFULL");
}
};
var apiid = false
if ("apiid" in data){
apiid=data['apiid'];
}
if (!apiid){
alert("no action or api ID provided; request won't work");
} else {
var URL = "https://api.vdo.ninja/"+apiid;
xhttp.open("POST", URL, true);
xhttp.setRequestHeader("Content-Type", "application/json");
xhttp.send(JSON.stringify(data));
}
}
function loadSelfCommands(){
var target_self = document.getElementById("target_self");
var title = document.createElement("h2");
title.innerText = "Send message to all social sites (Extension-specific)";
target_self.appendChild(title);
var input = document.createElement("input");
input.placeholder = "Message to send to external chat here as the host";
input.style = "width:100%";
target_self.appendChild(input);
var br = document.createElement("br");
target_self.appendChild(br);
// https://api.vdo.ninja/XXXXXXXXXX/sendChat/null/Hello
var button = document.createElement("button");
button.innerHTML = "Send message via WSS";
button.input = input;
button.onclick = function(){
if (this.input.value){
sendMessage(JSON.stringify({"action":"sendChat","value":this.input.value}));
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Send message via HTTPS GET";
button.input = input;
button.onclick = function(){
if (this.input.value){
var msg = encodeURIComponent(this.input.value); // we can use sendChat for simple words that don't need encoding
ajax({"action":"sendEncodedChat","value":msg, "apiid":WID});
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Send message via HTTPS POST";
button.input = input;
button.onclick = function(){
if (this.input.value){
post({"action":"sendChat","value":this.input.value, "apiid":WID});
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var title = document.createElement("h2");
title.innerText = "Dock-specific options";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Clear featured overlay (via dashboard)";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"clearOverlay", "apiid":WID}));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Next in Queue";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"nextInQueue", "apiid":WID}));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Get Current Queue Size";
button.title = "This is only needed when first connecting; auto-updates after";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"getQueueSize", "apiid":WID})); // WSS is ideal, since you don't get an echo then
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Toggle auto-show";
button.input = input;
button.onclick = function(){
ajax({"action":"autoShow","value":"toggle", "apiid":WID}); // true, false, or "toggle"
};
target_self.appendChild(button);
////////
var title = document.createElement("h2");
title.innerText = "Fake a Twitch message via POST requset";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Server -> extension message";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
post({"extContent":data, "apiid":WID});
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
post({content:data, "apiid":WID});
};
target_self.appendChild(button);
/////
var title = document.createElement("h2");
title.innerText = "Fake a Twitch message via GET requset";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Server -> extension message";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
var encoded = JSON.stringify(data);
encoded = encodeURIComponent(encoded);
ajax({"action":"extContent","value":encoded, "apiid":WID});
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
var encoded = JSON.stringify(data);
encoded = encodeURIComponent(encoded);
ajax({"action":"content","value":encoded, "apiid":WID});
};
target_self.appendChild(button);
/////
var title = document.createElement("h2");
title.innerText = "Fake a Twitch message via WebSockets";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
var message = {};
message.content = data;
sendMessage(JSON.stringify(message));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message (alt)";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> extension message";
button.onclick = function(){
var data = {};
data.chatname = "John Doe";
data.nameColor = "";
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = "Looking good! πππ This is a test message. πΆπ΅π΅π¨ ";
data.chatimg = "";
data.hasDonation = "100 gold";
data.hasMembership = "";
data.chatname = "Bob";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
var html = {};
html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
html.type = "svg";
data.chatbadges = [];
data.chatbadges.push(html);
var message = {};
message.extContent = data;
//message.apiid = WID; // session ID key
sendMessage(JSON.stringify(message));
};
target_self.appendChild(button);
}
loadSelfCommands();
</script>
</body>
</html>