Files
2024-08-26 17:45:56 -07:00

15 lines
415 B
JavaScript

window.addEventListener("message", (event) => {
if (event.data.type === "NEW_BROWSER_EXTENSION_CONNECTION") {
chrome.runtime.sendMessage({
action: "newApiKey",
connectionString: event.data.apiKey,
});
}
});
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === "getPageContent") {
sendResponse({ content: document.body.innerText });
}
});