f12 打开开发者工具,切换到console

破解无法使用鼠标右键

document.oncontextmenu = function(){
    event.returnValue = true;
}

破解无法选择

document.onselectstart = function(){
    event.returnValue = true;
}