/
githubmirror
/
developer
Обзор
Документация
Войти
/
githubmirror
/
developer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
v0/code2prompt2code/content_script.js
15 строк
392 B
swyxio
upload for pranav to stop going crazy
11 июл 2023, 07:33
11 июл 2023, 07:33
bfb45fc
Код
Авторство
О чём код?
function storePageContent() { const pageTitle = document.title; const pageContent = document.body.innerText; chrome.runtime.sendMessage({ action: "storePageContent", data: { title: pageTitle, content: pageContent }, }); } chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { if (request.action === "storePageContent") { storePageContent(); } });