Jquery 弹出式html页面未在crossrider中打开

Jquery 弹出式html页面未在crossrider中打开,jquery,internet-explorer,plugins,javascript-framework,crossrider,Jquery,Internet Explorer,Plugins,Javascript Framework,Crossrider,我正在使用crossrider创建IE扩展。在这个扩展中,我想通过单击浏览器操作中的图标打开一个html页面作为弹出窗口。当我点击图标时,html页面不会弹出 background.js appAPI.ready(function($) { appAPI.browserAction.setResourceIcon('icon128.png'); appAPI.browserAction.setTitle('Tax2290 Extension'); appAPI.browserAct

我正在使用crossrider创建IE扩展。在这个扩展中,我想通过单击浏览器操作中的图标打开一个html页面作为弹出窗口。当我点击图标时,html页面不会弹出

background.js

appAPI.ready(function($) 
{
  appAPI.browserAction.setResourceIcon('icon128.png');
  appAPI.browserAction.setTitle('Tax2290 Extension');
  appAPI.browserAction.setPopup({resourcePath:'index.html'});
});
extension.js

appAPI.ready(function($) {
// Includes remote JS file into extension.js scope
 // Injects remote JS file into HTML page
 appAPI.dom.addRemoteJS('images/feed.js');
// Injects remote CSS file into HTML page
 appAPI.dom.addRemoteCSS('images/style.css');

});

请帮助。

请查看我对副本的回复

[免责声明:我是一名Crossrider员工]