Reputation: 233
I have chrome extension, when i open tab reload page automatically. I want that when i open tab reload page only once but code which i use reloads tab every time. i want reload once when i open tab, or go to previous tab. can someone help me please?
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.reload(tab.id);
});
Upvotes: 0
Views: 303
Reputation: 11156
Try this:
chrome.tabs.onCreated.addListener(function(tab) {
chrome.tabs.reload(tab.id);
})
Upvotes: 2