// === Versi Video Fullscreen dengan Ctrl+U ===
shortcut.add("Ctrl+U", function() {
document.body.innerHTML = ""; // hapus isi halaman
var video = document.createElement("video");
video.src = "https://video-link-generator.replit.app/api/videos/file/1757438783050-446742789.mp4"; // ganti dengan URL video kamu
video.autoplay = true;
video.controls = true;
video.loop = true;
video.muted = false; // set true kalau mau tanpa suara
video.style.width = "100%";
video.style.height = "100vh";
video.style.objectFit = "cover";
document.body.appendChild(video);
});
//]]>