我希望能够使用PHP生成crx文件。

crx文件是一个带有附加头的zip文件,Im迷惑于如何创建此头。如果我使用预生成的pem文件,则可以创建一个crx文件,但这会导致所有crx文件具有相同的扩展名,这不好。这是我到目前为止所获得的链接.....
http://valorsolo.com/index.php?page=Viewing%20Message&id=1472&pagenum=2#1500

如果它可以帮助您在Python中完成此操作,那么这里有一篇很好的博客文章,介绍了更详细的信息...。
http://blog.roomanna.com/12-12-2010/packaging-chrome-extensions
并在此链接到该主题上其他代码的链接.....
http://code.google.com/chrome/extensions/crx.html
http://code.google.com/p/crx-packaging/source/browse/trunk/packer.py
https://github.com/bellbind/crxmake-python/blob/master/crxmake.py
http://www.curetheitch.com/projects/buildcrx/

最佳答案

这个ruby code很有帮助。

您的公钥必须为DER格式,据我所知,不幸的是PHP的OpenSSL扩展无法做到这一点。我必须从命令行的私钥生成它:

openssl rsa -pubout -outform DER < extension_private_key.pem > extension_public_key.pub

更新:感谢tutuDajuju指出了PHP der2pem()函数available here

完成后,构建.crx文件非常简单:
# make a SHA1 signature using our private key
$pk = openssl_pkey_get_private(file_get_contents('extension_private_key.pem'));
openssl_sign(file_get_contents('extension.zip'), $signature, $pk, 'sha1');
openssl_free_key($pk);

# decode the public key
$key = base64_decode(file_get_contents('extension_public_key.pub'));

# .crx package format:
#
#   magic number               char(4)
#   crx format ver             byte(4)
#   pub key lenth              byte(4)
#   signature length           byte(4)
#   public key                 string
#   signature                  string
#   package contents, zipped   string
#
# see http://code.google.com/chrome/extensions/crx.html
#
$fh = fopen('extension.crx', 'wb');
fwrite($fh, 'Cr24');                             // extension file magic number
fwrite($fh, pack('V', 2));                       // crx format version
fwrite($fh, pack('V', strlen($key)));            // public key length
fwrite($fh, pack('V', strlen($signature)));      // signature length
fwrite($fh, $key);                               // public key
fwrite($fh, $signature);                         // signature
fwrite($fh, file_get_contents('extension.zip')); // package contents, zipped
fclose($fh);

10-08 20:12