I\'m trying to create a Chrome extension that is a replacement for the Delicious bookmarklet. I know there\'s already an extension that does it, but the problem with that ex
I've found this solution: chrome.tabs.update({ active: true }); This single line of code closes the browser action's popup window. You even don't need to pass tab.id there because by default it is set to id of the current tab. I run it in background page but seems it can be run everywhere in the extension.