개발하고 싶은 초심자

티스토리에서 블로그 내용 복붙 못하게 하기 본문

알아두면 개발+블로깅에 유용한것들

티스토리에서 블로그 내용 복붙 못하게 하기

정새얀 2021. 12. 4. 16:51

도움 받은 링크

>> 자세한 사항은 링크 타고 들어가서 볼 수 있음

 

1. 티스토리에서 마우스 오른쪽 클릭 복사 방지 플러그인 해제하기

(티스토리 관리 > 플러그인 에 들어가면 간단하게 해제할 수 있다. 나는 해놓지 않아서 이 단계는 스킵함)

 

2. 스킨 변경 > 스킨 편집 > html 편집 > css > 관련 코드 css 제일 아래에 붙여넣기

/*블로그 불펌방지 및 특정영역 허용*/
code {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}

body {
-webkit-user-select: none !important;
-moz-user-select: -moz-none !important;
-ms-user-select: none !important;
user-select: none !important;
}

 

Comments