https://rumble.com/v25q72w-january-15-2023.html
https://rumble.com/v25q72w-january-15-2023.html
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frameless Window Example</title>
<script>
// Function to open a new frameless window
function openFramelessWindow() {
var features = 'width=300,height=200,toolbar=no,location=no,menubar=no,status=no,scrollbars=no,resizable=no';
window.open('https://example.com', '_blank', features);
}
// Attach the function to the window.onload event
window.onload = openFramelessWindow;
</script>
</head>