I have an extension that adds a button to the browser and it work in Chrome. When I install the extension on Internet Explorer the button does not appear. What am I doing wrong? My code looks like this:
appAPI.ready(function() {
appAPI.browserAction.onClick(function() {..});
});