Updated dev tools console code for "chat pop-out".
removed interfering element and added remove/restore function to the "user info" box.
//paste in console:
document.querySelector(".BroadcastVideoPanel")?.remove();
document.getElementById("footer-holder")?.remove();
document.querySelector('[data-testid="room-tab-bar"]')?.remove();
document.querySelector(".appsTab")?.remove();
document.querySelector('.scanNext')?.remove();
async function setElementStyles(el, styles) {
for (const [key, value] of Object.entries(styles)) {
el.style[key] = value;
}
}
const chatTabContainer = document.querySelector("#ChatTabContainer");
const body = document.body;
const html = document.documentElement;
setElementStyles(chatTabContainer, {
position: "fixed",
top: "0",
left: "0",
width: "100vw",
height: "100vh",
margin: "0",
overflow: "auto",
});
setElementStyles(body, {
position: "fixed",
top: "0",
left: "0",
width: "100vw",
height: "100vh",
margin: "0",
overflow: "hidden",
});
setElementStyles(html, {
overflow: "hidden",
});
// Create a new X button
var closeButton = document.createElement('button');
closeButton.innerHTML = 'X';
closeButton.style.position = 'absolute';
closeButton.style.top = '2.499px';
closeButton.style.left = '167px'; // Move a little to the left
closeButton.style.backgroundColor = 'red';
closeButton.style.color = 'white';
closeButton.style.border = 'none';
closeButton.style.fontSize = '7.2px'; // 10% smaller than 8px
closeButton.style.padding = '4.5px 9px'; // Adjust padding accordingly
closeButton.style.cursor = 'pointer';
closeButton.style.zIndex = '1001';
// Append the X button to the user information element
var userInfo = document.getElementById('user_information');
if (userInfo) {
userInfo.style.position = 'relative'; // Ensures the button is positioned relative to the user information container
userInfo.appendChild(closeButton);
// Add an event listener to remove the element when the X button is clicked
closeButton.addEventListener('click', function() {
userInfo.style.display = 'none'; // Hide the element instead of removing it
// Create a restore button
var restoreButton = document.createElement('button');
restoreButton.innerHTML = 'Restore';
restoreButton.style.position = 'fixed';
restoreButton.style.top = '0px'; // Align to the very top of the page
restoreButton.style.right = '10px'; // Place at the top right
restoreButton.style.backgroundColor = 'green';
restoreButton.style.color = 'white';
restoreButton.style.border = 'none';
restoreButton.style.fontSize = '10px'; // Increase by 25% from 8px
restoreButton.style.padding = '8px 15px'; // Adjust padding to match the larger size
restoreButton.style.cursor = 'pointer';
restoreButton.style.zIndex = '1001';
// Append the restore button to the body
document.body.appendChild(restoreButton);
// Add an event listener to restore the user information element
restoreButton.addEventListener('click', function() {
userInfo.style.display = 'block'; // Show the user information element
restoreButton.remove(); // Remove the restore button
});
});
} else {
console.log('User information element not found');
}