Is it possible to pack chrome extension with key (*.pem) on server only with CLI (Ubuntu-server)?
相关问题
- How does same-domain policy apply to background sc
- YouTube Data API v3 allowed referers for browser a
- Chrome Extension: How can I get global settings in
- Keep receiving Login Required error when trying to
- How to add more data to be stored in jenkins rest
相关文章
- Best way to manage docker containers with supervis
- Build errors of missing packages in Visual Studio
- Jenkins Pipeline having “Multiple candidate revisi
- Progressive web app(PWA) vs Electron vs Browser ex
- Should I use xUnitPublisher or xUnitBuilder after
- Hudson and maven-release-plugin
- How to pass a build number within the MultiJob plu
- chrome.runtime.getURL vs. chrome.extension.getURL
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:
It works on Mac as well with:
It should be similar on Ubuntu.
Leaving out
--pack-extension-key
will automatically create a key for you.There are official packaging scripts listed at https://developer.chrome.com/extensions/crx#scripts - currently one in Bash and one in Ruby. Use one of those.