document.addEventListener('mousedown'
-
[chrome extenstion] When I have selected text in page, how to pop up the text at down of mouse pointer.(글자 선택시 마우스 포인트 아래 띄우기)Frontend/chrome extension 2020. 3. 19. 17:30
Goal: 웹 페이지의 글자를 선택(클릭)을 할때 마우스 포인트 바로 아래 선택한 글자를 띄우고자한다. 이 기능은 내가 최종적으로 만들려는 기능이 아닌 과정일뿐이다. 사용한 보일러플레이트는 chrome-extension-boilerplate 에서 확인 할 수 있다. 크롬 확장 프로그램을 만들기에 앞서 개념 부분은 생략하겠다. 학습이 필요하다면 구글링.. 참조1 참조2 참조3 먼저 manifest.json에서 권한 부분을 아래와 같이 수정한다. "permissions": [ "https://*/*", "http://*/*", "activeTab" ], 그리고 본격적으로 content.ts에 삽입할 스크립트를 추가해주자. // content.js // Add bubble to the top of the pa..