thunderbird / addons-server

🕶 addons.thunderbird.net Django app and API, forked from addons.mozilla.org 🎉
https://addons.thunderbird.net
BSD 3-Clause "New" or "Revised" License
18 stars 17 forks source link

Can't Send Extension to SeaMonkey #232

Closed ramazansancar closed 1 year ago

ramazansancar commented 1 year ago

Describe the problem and steps to reproduce it:

(Please include as many details as possible.)

What happened?

What did you expect to happen?

Anything else we should know?

(Please include a link to the page, screenshots and any relevant files.)

MelissaAutumn commented 1 year ago

Hey there, this is actually working expected but the text appears to be slightly incorrect. A GUID is required for all extensions on addons.thunderbird.net.

You can find an example of a GUID from our sample-extensions repo: https://github.com/thundernest/sample-extensions/blob/master/hello-world/manifest.json#L9

In this case you need to add or update your browser_specific_settings area, and add an id. This id can be a unique UUID or an email like string (so maybe like netflixviewingactivity@ramazansancar.com.tr)

Cheers, Mel

ramazansancar commented 1 year ago

Hey there, this is actually working expected but the text appears to be slightly incorrect. A GUID is required for all extensions on addons.thunderbird.net.

You can find an example of a GUID from our sample-extensions repo: https://github.com/thundernest/sample-extensions/blob/master/hello-world/manifest.json#L9

In this case you need to add or update your browser_specific_settings area, and add an id. This id can be a unique UUID or an email like string (so maybe like netflixviewingactivity@ramazansancar.com.tr)

Cheers, Mel

Thanks for Help :)