일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Classification
- LLM
- LG Aimers
- 오블완
- deep learning
- 분류
- 머신러닝
- 지도학습
- LG
- supervised learning
- AI
- 해커톤
- 회귀
- PCA
- 티스토리챌린지
- regression
- OpenAI
- GPT-4
- 딥러닝
- ChatGPT
- gpt
- Machine Learning
- LG Aimers 4th
Archives
- Today
- Total
SYDev
[Javascript] Chrome extension 메시지 통신 본문
1. popup.html
<body>
<button id="extract">Extract Text</button>
<pre id="output"></pre>
<script src="popup.js"></script>
</body>
-> 위와 같이 "extract" id를 가진 버튼 html 상에 생성
2. popup.js
document.getElementById('extract').addEventListener('click', () => {
...
});
-> popup.js에서 getElementById() method로 해당 버튼을 클릭했을 때 반응할 수 있도록함
3. server.js
function sendTextToServer(textData) {
fetch('http://localhost:3000/api/submit', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ textData: textData })
})
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
console.log('Success:', data);
})
.catch((error) => {
console.error('Error:', error);
});
}
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log('Message received:', request);
if (request.action === 'extractText') {
const textData = extractTextWithXPath();
sendTextToServer(textData);
sendResponse({ textData: textData });
} else {
console.error('Unknown action:', request.action);
}
});
-> popup에서 전송한 메시지를 addListener를 통해 받을 수 있다.
-> addListener에서는 받은 request에서 필요한 데이터를 다시 서버에 전달
참고자료
'외부활동 참여 기록 > 공개 SW 개발자 대회' 카테고리의 다른 글
[Javascript] Document (0) | 2024.08.08 |
---|---|
Chrome Extension 개발 - 기본구조 (0) | 2024.07.09 |