javascript:(function(){
var frame = document.getElementById('mainFrame');
var doc = frame ? frame.contentDocument : document;
doc.querySelectorAll('*').forEach(el => {
el.style.userSelect = 'auto !important';
el.removeAttribute('onselectstart');
el.removeAttribute('oncontextmenu');
});
doc.querySelector('.se-main-container').style.userSelect = 'auto !important';
doc.querySelectorAll('div[class*="protect"]').forEach(div => div.remove());
['selectstart', 'contextmenu'].forEach(evt => {
doc.addEventListener(evt, e => {
e.stopImmediatePropagation();
return true;
}, true);
});
})();
위 내용 북마크에 등록 후 블로그에서 북마크 열어주면 됨.
필요할 때만 쓰면되니까 북마크 형식이 제일 편한 것 같다.
Grok3이 만들어줌
'그 외의 것들' 카테고리의 다른 글
[Netbackup] 라이선스 (0) | 2025.07.07 |
---|---|
[Future] XTM Weguardia 콘솔 Serial Baud rate (0) | 2025.06.17 |
hELLO 스킨 수정, 삭제 버튼의 정상적인 위치에 클릭 안되는 이슈 (0) | 2025.05.20 |
[Excel] 한칸 건너 채우기 (0) | 2018.04.25 |
배치파일로 크롬 기록 삭제하기 (2) | 2018.04.13 |