我在background
范围内有以下内容,它应该每 10 秒将活动选项卡信息打印到控制台:
appAPI.ready(function($) {
// console information about active tab every 10 seconds
appAPI.setInterval(function() {
appAPI.tabs.getActive(function(tabInfo) {
console.log(
'tabId: ' + tabInfo.tabId +
' tabUrl: ' + tabInfo.tabUrl
);
});}, 10 * 1000);
});
在最新的 Chrome 上,它不会在控制台中提供任何内容。