Tips
[Chrome] 페이지 드래그 되게 하기
공길이의 숨겨진 세상
2023. 7. 17. 18:09
chrome에서 웹페이지를 서핑하던중 페이지의 택스트를 드래그 할 수 없도록 설정해두는 짜증 나는 상황 대처법
구글 상단바에서 우클릭하여 페이지추가 클릭
이후 이름은 그냥 하고 싶은데로 하고 URL에 아래를 입력
javascript:function r(d)
{
d.oncontextmenu=null;
d.onselectstart=null;
d.ondragstart=null;
d.onkeydown=null;
d.onmousedown=null;
d.body.oncontextmenu=null;
d.body.onselectstart=null;
d.body.ondragstart=null;
d.body.onkeydown=null;
d.body.onmousedown=null;
}
var tb=document.all.tags('BODY');
if(tb.length==0)
{
for(var i=0;i<top.frames.length;i++)
{
r(top.frames[i].document);
}
}
else
{
r(document);
}
그러면 상당 북마크에 이게 생성된다
드래그가 안되는 페이지가 들어가게되면 이 북마크 버튼을 눌러보자 신기하게도 드래그가 된다굿