Aaron Elijah Mars e26dc768fe opendia init
2025-06-13 23:21:32 +02:00

13 lines
408 B
JavaScript

// Content script for interacting with web pages
console.log('MCP Browser Bridge content script loaded');
// Listen for messages from the background script
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === 'getPageInfo') {
sendResponse({
title: document.title,
url: window.location.href,
content: document.body.innerText
});
}
});