搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Icons not showing after newly written extension is zipped to xpi

  • 2 个回答
  • 2 人有此问题
  • 18 次查看
  • 最后回复者为 Wizardgoat

more options

I'm a novice who's learning overlay extensions. I've been through a good bit of the tutorial. I then built a basic extension shell with a custom toolbar button by following the steps in https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Toolbars/Custom_toolbar_button. As part of the exercise, I downloaded the two recommended icons (for add-ons manager and the toolbar), and did not modify them. I did add some code to the java file. I copied the (unzipped) extension folder to the extensions folder in my profile, as instructed, and restarted the browser. An install dialog was launched, and when I responded okay, the extension installed perfectly. The icons showed up in add-on manager, and I was able to drag the button icon to the toolbar. The button works fine, launching the java.

Then, following instructions on another tutorial page, I used 7-zip to archive all items from the root extension folder, in Zip format, and gave the file an xpi extension. I then uninstalled the original extension from the extensions folder, and bounced the browser. Then, from add-ons manager, I invoked "install add-on from file", and selected the new xpi file. The install went through the usual confirmations, and the extension was now reinstalled. Only one problem -- both icons are blank. Both in the add-ons manager, and on the toolbar button. I can click the ghost button in the toolbar, and it still launches the java, but no png images show up, including in the customization dialog.

I've tried manually installing the extension again, and the icons show up. But a subsequent xpi install leaves them blank. I tried re-creating the xpi file by using the Windows zip program instead of 7-zip, but still got blank icons.

In searching the web, I found an instance of another user who lost the icon images only after zipping the extension, so it's not just me. But the responses to that post didn't seem helpful.

Any ideas?

I'm a novice who's learning overlay extensions. I've been through a good bit of the tutorial. I then built a basic extension shell with a custom toolbar button by following the steps in https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Toolbars/Custom_toolbar_button. As part of the exercise, I downloaded the two recommended icons (for add-ons manager and the toolbar), and did not modify them. I did add some code to the java file. I copied the (unzipped) extension folder to the extensions folder in my profile, as instructed, and restarted the browser. An install dialog was launched, and when I responded okay, the extension installed perfectly. The icons showed up in add-on manager, and I was able to drag the button icon to the toolbar. The button works fine, launching the java. Then, following instructions on another tutorial page, I used 7-zip to archive all items from the root extension folder, in Zip format, and gave the file an xpi extension. I then uninstalled the original extension from the extensions folder, and bounced the browser. Then, from add-ons manager, I invoked "install add-on from file", and selected the new xpi file. The install went through the usual confirmations, and the extension was now reinstalled. Only one problem -- both icons are blank. Both in the add-ons manager, and on the toolbar button. I can click the ghost button in the toolbar, and it still launches the java, but no png images show up, including in the customization dialog. I've tried manually installing the extension again, and the icons show up. But a subsequent xpi install leaves them blank. I tried re-creating the xpi file by using the Windows zip program instead of 7-zip, but still got blank icons. In searching the web, I found an instance of another user who lost the icon images only after zipping the extension, so it's not just me. But the responses to that post didn't seem helpful. Any ideas?

被采纳的解决方案

It was necessary to set unpack to true in the install rdf, so that all icons would get unzipped and be available for use.

定位到答案原位置 👍 0

所有回复 (2)

more options

Add-ons support is over here: https://forums.addons.mozilla.org/

more options

选择的解决方案

It was necessary to set unpack to true in the install rdf, so that all icons would get unzipped and be available for use.