docs: fix misleading MV3 reference and add Compatibilité & Roadmap section#124
Merged
docs: fix misleading MV3 reference and add Compatibilité & Roadmap section#124
Conversation
…ADME Co-authored-by: ormidales <46538211+ormidales@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update manifest version to MV3 and improve README
docs: fix misleading MV3 reference and add Compatibilité & Roadmap section
Mar 10, 2026
ormidales
approved these changes
Mar 10, 2026
3 tasks
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the README to accurately describe the extension’s current Manifest V2 networking approach and to clarify MV2/MV3 browser compatibility and migration constraints.
Changes:
- Corrects the “Stack Technique” WebExtensions API bullet to reflect
webRequest+webRequestBlocking(MV2) rather than MV3’sdeclarativeNetRequest. - Adds a “Compatibilité & Roadmap” section with a browser support table and a rationale for deferring MV3 migration due to missing capabilities for this use case.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| * **API WebExtensions** : Utilisation de l'API `declarativeNetRequest` (ou `webRequest` avec blocage) pour l'interception performante des requêtes réseau au niveau du navigateur. | ||
| * **API WebExtensions** : Utilisation de l'API `webRequest` avec `webRequestBlocking` (Manifest V2) pour l'interception synchrone et l'annulation des requêtes réseau au niveau du navigateur. | ||
| * **JavaScript Vanilla (ES2022)** : Garantit une exécution rapide et légère du background worker sans surcharge liée à un framework externe. |
There was a problem hiding this comment.
La formulation « background worker » est trompeuse ici : en Manifest V2, l’extension utilise une page/script de fond (cf. manifest.json → background.scripts), pas un service worker (MV3). Pour éviter la confusion, remplacer par « script de fond », « page de fond » ou « background script (MV2) ».
Suggested change
| * **JavaScript Vanilla (ES2022)** : Garantit une exécution rapide et légère du background worker sans surcharge liée à un framework externe. | |
| * **JavaScript Vanilla (ES2022)** : Garantit une exécution rapide et légère du script de fond (background script, MV2) sans surcharge liée à un framework externe. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The README claimed
declarativeNetRequest(MV3) as part of the current stack, while the extension actually useswebRequestBlocking(MV2-only). This creates confusion about the technical strategy.Changes
Stack Technique— corrected the WebExtensions API bullet to accurately reflect the current implementation:webRequest+webRequestBlocking(Manifest V2)Compatibilité & Roadmapsection — adds:declarativeNetRequestOriginal prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.