Morphxe
Morphxe
PD🧩 Plasmo Developers
Created by Morphxe on 3/17/2025 in #🔰newbie
CRX key for Prod
I have developed my extension. and I want to publish it to the chrome web store. at the development stage I used the crx key to test the redirect options page with the supabase. do I have to remove it first from the .env and package.json and then run the pnpm build?. please help.
.env
CRX_ID=xxxxxx
CRX_KEY=xxxxxxxxxx
.env
CRX_ID=xxxxxx
CRX_KEY=xxxxxxxxxx
and
package.json

{
...,
"manifest": {
"permissions": [
"tabs"
],
"host_permissions": [
"https://*/*"
],
"key": "$CRX_KEY",
"web_accessible_resources": [
{
"resources": [
"options.html"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"$CRX_ID"
]
}
]
}
}
package.json

{
...,
"manifest": {
"permissions": [
"tabs"
],
"host_permissions": [
"https://*/*"
],
"key": "$CRX_KEY",
"web_accessible_resources": [
{
"resources": [
"options.html"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"$CRX_ID"
]
}
]
}
}
and since i also look to comeback to this project in the future is there any way that plasmo recognize saparation of .env ?. like for example .env.production and .env.development. i did found some about this in the docs https://docs.plasmo.com/framework/env. but i need some enlightenment about the package.json if indeed i used two diff .env (prod and dev). thanks
2 replies