test : stream cap
Some checks failed
release / build (push) Successful in 16s
release / verify-windows (push) Failing after 1m0s

This commit is contained in:
jeanotx32
2026-08-11 19:34:55 +02:00
parent e87afc49c0
commit da9025fbf1
4 changed files with 351 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"manifest_version": 2,
"name": "Stream Capture (test)",
"version": "0.1.0",
"description": "Copie les segments média que Firefox télécharge déjà, vers un récepteur local. Banc d'essai pour Stream Control.",
"browser_specific_settings": {
"gecko": {
"id": "stream-capture@stream-control.local",
"strict_min_version": "115.0"
}
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*://*.doppiocdn.com/*",
"http://127.0.0.1/*"
],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_title": "Stream Capture — segments copiés"
}
}