There is no API call for this. The closest I could get was to launch chrome.tabs.getAllInWindowat the beginning of the background page and then analyze the returned tabs.
chrome.tabs.getAllInWindow(null, function(tabs) {
if(tabs.length == 1 && tabs[0].status == "loading") {
console.log("possible home page:", tabs[0].url);
}
});
, , 1 , , URL-. , , , ( localStorage).