// Disable right-click on videos
document.addEventListener('contextmenu', function(e) {
if(e.target.tagName === 'VIDEO') {
e.preventDefault();
return false;
}
});
// Disable keyboard shortcuts
document.addEventListener('keydown', function(e) {
if ((e.ctrlKey || e.metaKey) && e.key === 's') {
if (document.querySelector('video')) {
e.preventDefault();
}
}
});
// Add controlsList to prevent downloads
document.addEventListener('DOMContentLoaded', function() {
const videos = document.querySelectorAll('video');
videos.forEach(function(video) {
video.setAttribute('controlsList', 'nodownload');
video.setAttribute('disablePictureInPicture', 'true');
});
});