/
githubmirror
/
developer
Обзор
Документация
Войти
/
githubmirror
/
developer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
v0/code2prompt2code/background.js
22 строки
638 B
swyxio
upload for pranav to stop going crazy
11 июл 2023, 07:33
11 июл 2023, 07:33
bfb45fc
Код
Авторство
О чём код?
chrome.action.onClicked.addListener((tab) => { chrome.scripting.executeScript({ target: { tabId: tab.id }, files: ["content_script.js"], }); }); chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { if (request.action === "storePageContent") { const tabId = sender.tab.id; chrome.storage.local.set({ [tabId]: request.data }, () => { sendResponse({ success: true }); }); return true; } else if (request.action === "getPageContent") { const tabId = sender.tab.id; chrome.storage.local.get(tabId, (data) => { sendResponse(data[tabId]); }); return true; } });