Remove web limits(modified)

Pass to kill most of the site, you can lift the restrictions prohibited to copy, cut, select the text, right-click menu.revised version

< Feedback on Remove web limits(modified)

Question/comment

§
Posted: 2020-06-04

网站禁止ctrl键

部分网站屏蔽CTRL,一按CTRL就弹框。

防CTRL代码如下

//按键时提示警告
function key(e) { var keynum; if (window.event) { keynum = e.keyCode; // IE
} else if (e.which) { keynum = e.which; // Netscape/Firefox/Opera
} if (keynum == 17) { alert("禁止复制内容!"); return false; } }

§
Posted: 2020-12-15

你好,请问百度文库每次复制之后因为触发ctrl c 所以一直跳出开vip的界面,能想办法把这个去掉嘛

网站禁止ctrl键

部分网站屏蔽CTRL,一按CTRL就弹框。

防CTRL代码如下

//按键时提示警告

function key(e) {
var keynum;
if (window.event) {
keynum = e.keyCode; // IE

} else if (e.which) {
keynum = e.which; // Netscape/Firefox/Opera

}
if (keynum == 17) {
alert("禁止复制内容!");
return false;
}
}

可以改用 https://greasyfork.org/scripts/427575 試試看喔

Post reply

Sign in to post a reply.