Could you send your chrome extension code? Without a lot of information, I hope this will be useful. You can enter the code below to refresh the page after chrome reloads:
chrome.tabs.query({ active: true, // Select active tabs lastFocusedWindow: true // In the current window }, function(tabs) { // Since there can only be one active tab in one active window, // the array has only one element var tab = tabs[0]; // Javascript to reload the page var code = 'window.location.reload();'; // Execute the code for the current tab chrome.tabs.executeScript(tab.id, {code: code}); });
source share