0

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

背景.js

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

扩展.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');

});

请帮忙。

4

1 回答 1

0

请参阅我对重复线程的回复

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

于 2013-08-05T09:44:39.917 回答