본문 바로가기
북마크릿 도구

네이버 영어 사전

by 크렌베리 마케팅 2024. 12. 6.

간단 내용

네이버 영어 사전 북마크릿 앱

텍스트 선택후 네이버 사전 버튼 클릭시 네이버 영어 사전으로 이동해 번역 혹은 텍스트 미선택시 물음창에서 번역할 텍스트 입력

화면 캡처

상세 내용

네이버 영어 사전 북마크릿 앱

텍스트 선택후 네이버 영어 사전 버튼 클릭시 네이버 영어 사전으로 이동해 번역 혹은 텍스트 미선택시 물음창에서 번역할 텍스트 입력

장점

단점

 

앱 주소

 

북마크릿 앱 추가시 URL에 코드 복사해 붙여 넣기:

javascript:
  (() => {
    const url = "https://en.dict.naver.com/#/search?query=";
    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://en.dict.naver.com/#/search?query=";
    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

리뷰 동영상

강의 동영상

 

참고 자료

 

북마크릿(Bookmarklet)
https://iamnotokay.tistory.com/23

태그

네이버영어사전, 검색, 물음창

Sns

https://marketinganywhere.tistory.com/74

 

https://blog.naver.com/marketinganywhere/223536622056

 

https://marketing-anywhere.blogspot.com/2024/11/blog-post_98.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