本文介绍了仅使用命令行界面在服务器上打包Chrome扩展的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用键(* .pem)在服务器上使用CLI(Ubuntu-server)包装chrome扩展?
解决方案
您可以使用应用程序开关 - pack-extension
- pack-extension-key
,如。
基本上,在Windows上,您可以在终端中运行以下命令:
chrome.exe --pack-extension = c:\myext --pack-extension-key = c:\myext.pem
pre>
它可以在Mac上使用:
/ Google\ Chrome.app/Contents/MacOS/Google\ Chrome --pack-extension =。/ myext --pack-extension-key =。/ myext.pem
在Ubuntu上应该是类似的。
离开
-extension-key
会自动为您创建一个键。Is it possible to pack chrome extension with key (*.pem) on server only with CLI (Ubuntu-server)?
解决方案You can use the application switches
--pack-extension
and--pack-extension-key
as described in the documentation.Basically, on Windows, you'd run the following in a terminal:
chrome.exe --pack-extension=c:\myext --pack-extension-key=c:\myext.pem
It works on Mac as well with:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --pack-extension=./myext --pack-extension-key=./myext.pem
It should be similar on Ubuntu.
Leaving out
--pack-extension-key
will automatically create a key for you.这篇关于仅使用命令行界面在服务器上打包Chrome扩展的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!