You can remove the popup using:
chrome.browserAction.setPopup({popup: ""});
and switch icon to disable:
chrome.browserAction.setIcon({path: "icon-disabled.png"});
To enable, you will need to run these methods again with the appropriate parameters.
source share