在Chrome浏览器扩展程序中,通过使用Chrome的消息传递机制来解决这个问题。我们可以为扩展程序中的每个内容脚本创建一个单独的BackgroundJS页面来处理消息,并确保与Angular应用程序所在的页面隔离。
以下是示例代码,用于在内容脚本和后台页面之间传递消息:
chrome.extension.onConnect.addListener(function(port) { if (port.name !== "contentScript") return;
// Listen for messages from the content script port.onMessage.addListener(function(message) { if (message.action === "popupClicked") { // Retrieve the current URL from the active tab chrome.tabs.query({active: true}, function(tabs) { let url = tabs[0].url;
// Send a message back to the content script
port.postMessage({action: "openUrl", url: url});
});
}
}); });
这样一来,我们就可以在不影响主网页的情况下,使用Angular路由在扩展程序中的内容脚本中处理URL导航。