간단 내용
파파고 번역 북마크릿 앱
텍스트 선택후 파파고 번역 버튼 클릭시 파파고 번역으로 이동해 번역 혹은 텍스트 미선택시 물음창에서 번역할 텍스트 입력
화면 캡처
상세 내용
파파고 번역 북마크릿 앱
텍스트 선택후 파파고 번역 버튼 클릭시 파파고 번역으로 이동해 번역 혹은 텍스트 미선택시 물음창에서 번역할 텍스트 입력
장점
단점
앱 주소
북마크릿 앱 추가시 URL에 코드 복사해 붙여 넣기:
javascript:
(() => {
const url = "https://papago.naver.com/?sk=auto&tk=ko&hn=0&st=";
const selectedText = window.getSelection();
if (selectedText != null && selectedText != "") {
window.open(url + encodeURIComponent(selectedText));
} else {
const query = prompt("번역할 텍스트:");
if (query != null && query != "") {
window.open(url + encodeURIComponent(query));
}
}
})();
같은 창에서 열기 버전:
javascript:
(() => {
const url = "https://papago.naver.com/?sk=auto&tk=ko&hn=0&st=";
const selectedText = window.getSelection();
if (selectedText != null && selectedText != "") {
window.location.href = url + encodeURIComponent(selectedText);
} else {
const query = prompt("번역할 텍스트:");
if (query != null && query != "") {
window.location.href = url + encodeURIComponent(query);
}
}
})();
북마크릿 앱 추가 방법
https://marketinganywhere.tistory.com/69
리뷰 동영상
강의 동영상
태그
키워드: 북마크릿, 파파고, 번역
Sns
https://marketinganywhere.tistory.com/73
https://blog.naver.com/marketinganywhere/223536622400
https://marketing-anywhere.blogspot.com/2024/11/blog-post_60.html
작성 도구
본 글은 웹페이지 어디서나 마케팅 관련 작업을 쉽게 할 수 있게 도와주는 무료 오픈 소스 메타 생성형 Ai 크롬확장 앱인 "마케팅 애니웨어"에 의해 작성되었습니다.
https://www.marketinganywhere.ai/
'북마크릿 도구' 카테고리의 다른 글
구글 번역 (0) | 2024.12.06 |
---|---|
네이버 영어 사전 (0) | 2024.12.06 |
WebArchive 사이트 히스토리 열기 (0) | 2024.12.06 |
구글 검색 (0) | 2024.12.06 |
네이버 검색수 체크 (1) | 2024.12.06 |