Removing browser web page restrictions and tricks that cannot be copied from the right-click menu

1620

method one

Usually press F12 directly. If this key is disabled, it can be opened by SHIFT + CTRL + I, or through the ” Developer Tools ” in the browser menu.

Select the console, enter the following code and press Enter.

 // 开启文字选择document . onselectstart = function ( ) { return true ; } ; // 开启复制document . oncopy = function ( ) { return true ; } ; //

The post Removing browser page restrictions and a trick that the right-click menu can’t be copied first appeared on Lenix Blog .

This article is reprinted from https://blog.p2hp.com/archives/9384
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment