Description
Display Size:7 inches
Computer Memory Size:1 GB
Operating System:Android 4.2 Jelly Bean
Hard Disk Size:8 GB
Cpu Model Family:Tablet Processor
// Disable right-click & block common shortcuts
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
alert('Content protected by copyright.');
});
document.addEventListener('keydown', function(e) {
// F12 - DevTools
if (e.key === 'F12') {
e.preventDefault();
alert('This action is disabled on this site.');
}
// Ctrl+U - View Source
if (e.ctrlKey && e.key.toLowerCase() === 'u') {
e.preventDefault();
alert('This action is disabled on this site.');
}
// Ctrl+S - Save Page
if (e.ctrlKey && e.key.toLowerCase() === 's') {
e.preventDefault();
alert('This action is disabled on this site.');
}
// Ctrl+Shift+I - DevTools
if (e.ctrlKey && e.shiftKey && e.key === 'I') {
e.preventDefault();
alert('This action is disabled on this site.');
}
// Ctrl+Shift+J - Console
if (e.ctrlKey && e.shiftKey && e.key === 'J') {
e.preventDefault();
alert('This action is disabled on this site.');
}
});
Reviews
There are no reviews yet.