Use URL filters to limit webNavigation events:chrome.webNavigation.onHistoryStateUpdated.addListener(details => { if (!details.frameId) { chrome.tabs.executeScript(details.tabId, {file: 'content.js'}); }}, { url: [ {hostEquals: 'youtu.be'}, {hostEquals: 'www.youtube.com', pathPrefix: '/watch'}, ],}); 这篇关于未选中的runtime.lastError:无法访问url的内容.但我不需要访问该URL的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-06 02:22