/
githubmirror
/
developer
Обзор
Документация
Войти
/
githubmirror
/
developer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
v0/exampleChromeExtension/content_script.js
18 строк
541 B
swyxio
upload for pranav to stop going crazy
11 июл 2023, 07:33
11 июл 2023, 07:33
bfb45fc
Код
Авторство
О чём код?
function extractPageContent() { const pageTitle = document.title; const pageContent = document.body.innerText; return { pageTitle, pageContent }; } function sendMessageToBackground(action, data) { chrome.runtime.sendMessage({ action, ...data }, (response) => { if (response.success) { console.log('Page content sent to background.'); } else { console.error('Failed to send page content to background.'); } }); } const pageData = extractPageContent(); sendMessageToBackground('storePageContent', pageData);