문제

How do you create a .XPI package on a mac

도움이 되었습니까?

해결책

XPI files are just ZIP-files that have been renamed with extension xpi. You can just use the file compression available through the Finder UI or use commands in terminal or automate process using makefiles or similar.

다른 팁

see this makefile for example, a xpi is only a zip file.

You can pick up any zip tools and can make xpi,

I use 7zip for that, for example

7za a -tzip myextension.xpi chrome install.rdf install.js -r -mx9
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top