我需要动态创建CRX文件。它适用于我的CMS后端,因此它只适用于经过身份验证的用户,他们可以将CMS后端安装为webapp并为Web应用程序提供更多权限。问题是,后端用于许多域,因此为每个域创建CRX文件是一项非常有用的工作。所以我认为按需创建CRX文件会更容易,PHP文件将由PHP使用自己的域和可能的自定义图标生成。
答案 0 :(得分:1)
在文档页面上,他们解释了CRX包格式。有许多第三方库实现了这种格式。在下一页中,您可以学习格式并下载Ruby / Bash脚本(您也可以在线找到其他脚本),如果您想实现自己的打包器,则可以按照其中描述的格式进行操作。
https://developer.chrome.com/extensions/crx
如果您真的不想遵循该格式,可以让您的PHP脚本执行以下操作之一:
chrome.exe --pack-extension=c:\myext --pack-extension-key=c:\myext.pem
希望有所帮助!
答案 1 :(得分:0)
这对我有用:D我只是从真实路径更改为null,而不会对新的chrome进行更改:D
/ ** * CrxGenerator类 * *从中创建Chrome扩展CRX包 *文件夹& pem私钥 * *基于CRX格式文档:http://developer.chrome.com/extensions/crx.html * * @author:Tomasz Banasiak * @license:麻省理工学院 * @date:2013-11-03 * /
类CrxGenerator { const TEMP_ARCHIVE_EXT ='。zip';
private $sourceDir = null;
private $cacheDir = '';
private $privateKeyContents = null;
private $publicKeyContents = null;
private $privateKey = null;
private $publicKey = null;
/**
* @param $file Path to PEM key
* @throws Exception
*/
public function setPrivateKey($file) {
if (!file_exists($file)) {
throw new Exception('Private key file does not exist');
}
$this->privateKeyContents = file_get_contents($file);
$this->privateKey = $file;
}
/**
* @param $file Path to PUB key
* @throws Exception
*/
public function setPublicKey($file) {
if (!file_exists($file)) {
throw new Exception('Private key file does not exist');
}
$this->publicKeyContents = file_get_contents($file);
$this->publicKey = $file;
}
/**
* @param $cacheDir dir specified for caching temporary archives
* @throws Exception
*/
public function setCacheDir($cacheDir) {
if (!is_dir($cacheDir)) {
throw new Exception('Cache dir does not exist!');
}
$this->cacheDir = $cacheDir;
}
/**
* @param $sourceDir Extension source directory
*/
public function setSourceDir($sourceDir) {
$this->sourceDir = $sourceDir;
}
/**
* @param $outputFile path to output file
* @throws Exception
*/
public function generateCrx($outputFile) {
$basename = basename($outputFile);
// First step - create ZIP archive
$zipArchive = $this->cacheDir . DIRECTORY_SEPARATOR . $basename . self::TEMP_ARCHIVE_EXT;
$result = $this->createZipArchive(
$this->sourceDir,
$zipArchive
);
if (!$result) {
throw new Exception('ZIP creation failed');
}
$zipContents = file_get_contents($zipArchive);
// Second step - create file signature
$privateKey = openssl_pkey_get_private($this->privateKeyContents);
openssl_sign($zipContents, $signature, $privateKey, 'sha1');
openssl_free_key($privateKey);
// Create output file
$crx = fopen($outputFile, 'wb');
fwrite($crx, 'Cr24');
fwrite($crx, pack('V', 2));
fwrite($crx, pack('V', strlen($this->publicKeyContents)));
fwrite($crx, pack('V', strlen($signature)));
fwrite($crx, $this->publicKeyContents);
fwrite($crx, $signature);
fwrite($crx, $zipContents);
fclose($crx);
// Clear cache
unset($zipArchive);
}
/**
* @param $source - source dir
* @param $outputFile - output file
* @return bool - success?
*/
private function createZipArchive($source, $outputFile) {
if (!extension_loaded('zip') || !file_exists($source)) {
return false;
}
$zip = new ZipArchive();
if (!$zip->open($outputFile, ZIPARCHIVE::CREATE)) {
return false;
}
$source = str_replace('\\', '/', realpath($source));
if (is_dir($source) === true) {
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);
foreach ($files as $file) {
$file = str_replace('\\', '/', $file);
// Exclude "." and ".." folders
if( in_array(substr($file, strrpos($file, '/') + 1), array('.', '..')) ) {
continue;
}
$file = $file;
if (is_dir($file) === true) {
$zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
}
else if (is_file($file) === true) {
$zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
}
}
}
else if (is_file($source) === true) {
$zip->file_get_contents($source);
echo $source;
}
return $zip->close();
}
}
答案 2 :(得分:-1)
看起来我找到了我正在寻找的东西。 Chrome团队已将此选项设为create CRX-less web apps,只需使用简单的清单文件即可。
更容易创建自己的webapp并将其发布到网站上进行安装。当我拥有许多域名的网站时,它也解决了我的问题,而且我不必为每个域创建自定义CRX文件。我只是创建一个小PHP脚本,为每个域动态创建清单文件。