Search code examples
javascriptinternet-explorerbrowser-extensioncrossrider

CrossRider extension is not working on Internet Explorer 11


We are using CrossRider to develop an extension for Internet Explorer. I added alerts in the background and in extension.js, but there are no alerts when I install this extension. What is the problem?

background.js:

appAPI.ready(function($) {
    alert("appAPI.platform = " + appAPI.platform);
});

extension.js:

appAPI.ready(function($) {
    alert("appAPI.platform = " + appAPI.platform);
});

Our Extension ID is 43889. I'm using Internet Explorer 11 but this extension should work on all versions of Internet Explorer.


Solution

  • OK, I found out there was a yellow bar at the bottom of the screen of Internet Explorer and there I had to click "enable", until I enabled the extension it was disabled and therefore no alerts happened.