Question

I have the following in the background scope, it should print the active tab info to the console every 10 seconds:

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);
});

And it doesn't give anything in the console, on the latest Chrome.

Was it helpful?

Solution

Are you checking Chrome's background console? For more information, see Viewing Messages in Chrome's Background Console.

FYI: I tested your code on the latest Chrome and it works as expected: Test Result

[Disclaimer: I am a Crossrider employee]

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top