What is a .pem file and How to use it?

前端 未结 1 882
执笔经年
执笔经年 2021-02-07 03:35

I am designing a new chrome extension and when I package it then I get 2 file: a .crx file and a .pem file.

I want to distribuite my ex

1条回答
  •  囚心锁ツ
    2021-02-07 03:59

    The packager creates two files:

    • a .crx file, which is the actual extension that can be installed.
    • a .pem file, which contains the private key.

    You'll need the .pem later if you want to:

    • Update the extension
    • Uploading a previously packaged extension to the Chrome Web Store (make sure that the file is called key.pem (more info))

    So, do not lose your private key (.pem)!

    0 讨论(0)
提交回复
热议问题