I have a self-hosted addon: https://github.com/BPower0036/multi-account-containers/releases/tag/8.0.7.3
I want it to auto update, so I set the following in the manifest
file:
"browser_specific_settings": {
"gecko": {
"id": "@testpilot-containers-wildcard",
"strict_min_version": "91.1.0",
"update_url": "https://raw.githubusercontent.com/BPower0036/multi-account-containers/wildcard/src/update.json"
}
In the update.json
file I put the following, but according to extension update manifest you need a update_link
{
"addons": {
"@testpilot-containers-wildcard": {
"updates": [
{
"version": "8.0.7.3",
"browser_specific_settings": { "gecko": { "strict_min_version": "91.1.0" } },
"update_link": "...."
}
]
}
}
}
What should I put there, since I can’t make my own .xpi
file?