js 禁用开发者工具、js 禁用打印 pdf All In One
difficulty:
Medium
/ 难度:中等
原理分析
js 检查浏览器是否打开了开发者工具, 重定向到 about:blank
空白页
js 检测键盘所有按键事件,销毁页面, 重定向到 about:blank
空白页
demos
const url = `https://cdn.xgqfrms.xyz/pdf.html`;
fetch(url)
.then(function(res) {
return res.text();
})
.then((content) => {
let newWindow = window.open(``, '_blank');
newWindow.document.write(content);
newWindow.document.close();
});