Files
cl-cli/web-extension/cl/manifest.json
Julien Fastré 606486c3fe
All checks were successful
Release binary and debian package for cl-cli / webext-build (push) Successful in 3m10s
Release binary and debian package for cl-cli / build-and-release (push) Successful in 1m51s
Release v0.5.0
2025-11-13 12:47:07 +01:00

29 lines
586 B
JSON

{
"manifest_version": 3,
"name": "Champs-Libres Helper",
"version": "0.5.0",
"browser_specific_settings": {
"gecko": {
"id": "helper@champs-libres-coop",
"strict_min_version": "143.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"description": "Aide pour les champs-libres",
"icons": {
"48": "icons/img-48.png"
},
"permissions": ["menus", "nativeMessaging", "tabs"],
"host_permissions": [
"*://*/*"
],
"background": {
"scripts": ["dist/background/background.js"],
"type": "module"
}
}