Is there an API to programmatically refresh the current tab from inside a browser action button? I have background page configured, which attaches a listener via:
I think what you're looking for is:
chrome.tabs.reload(integer tabId, object reloadProperties, function callback)
Check out tabs API() documentation for more information.