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');
});
助けてください。