2023-10-07 22:07:57 -04:00
|
|
|
let chat_tab = document.getElementById("chat-tab");
|
2023-08-13 21:14:09 -04:00
|
|
|
let main_parent = chat_tab.parentNode;
|
|
|
|
|
2023-08-13 21:48:15 -04:00
|
|
|
function scrollToTop() {
|
2023-10-07 22:07:57 -04:00
|
|
|
window.scrollTo({
|
|
|
|
top: 0,
|
|
|
|
// behavior: 'smooth'
|
|
|
|
});
|
2023-08-13 21:48:15 -04:00
|
|
|
}
|
|
|
|
|
2023-08-29 16:22:15 -04:00
|
|
|
function findButtonsByText(buttonText) {
|
2023-10-07 22:07:57 -04:00
|
|
|
const buttons = document.getElementsByTagName("button");
|
2023-08-29 16:22:15 -04:00
|
|
|
const matchingButtons = [];
|
|
|
|
buttonText = buttonText.trim();
|
|
|
|
|
|
|
|
for (let i = 0; i < buttons.length; i++) {
|
|
|
|
const button = buttons[i];
|
|
|
|
const buttonInnerText = button.textContent.trim();
|
|
|
|
|
|
|
|
if (buttonInnerText === buttonText) {
|
|
|
|
matchingButtons.push(button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return matchingButtons;
|
|
|
|
}
|
|
|
|
|
2023-08-13 21:14:09 -04:00
|
|
|
function switch_to_chat() {
|
2023-10-07 22:07:57 -04:00
|
|
|
let chat_tab_button = main_parent.childNodes[0].childNodes[1];
|
|
|
|
chat_tab_button.click();
|
|
|
|
scrollToTop();
|
2023-08-13 21:14:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function switch_to_default() {
|
2023-10-07 22:07:57 -04:00
|
|
|
let default_tab_button = main_parent.childNodes[0].childNodes[4];
|
|
|
|
default_tab_button.click();
|
|
|
|
scrollToTop();
|
2023-08-13 21:14:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function switch_to_notebook() {
|
2023-10-07 22:07:57 -04:00
|
|
|
let notebook_tab_button = main_parent.childNodes[0].childNodes[7];
|
|
|
|
notebook_tab_button.click();
|
|
|
|
findButtonsByText("Raw")[1].click();
|
|
|
|
scrollToTop();
|
2023-08-13 21:14:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function switch_to_generation_parameters() {
|
2023-10-07 22:07:57 -04:00
|
|
|
let parameters_tab_button = main_parent.childNodes[0].childNodes[10];
|
|
|
|
parameters_tab_button.click();
|
|
|
|
findButtonsByText("Generation")[0].click();
|
|
|
|
scrollToTop();
|
2023-08-13 21:14:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function switch_to_character() {
|
2023-10-07 22:07:57 -04:00
|
|
|
let parameters_tab_button = main_parent.childNodes[0].childNodes[10];
|
|
|
|
parameters_tab_button.click();
|
|
|
|
findButtonsByText("Character")[0].click();
|
|
|
|
scrollToTop();
|
2023-08-13 21:14:09 -04:00
|
|
|
}
|