-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Labels
Description
Bug Description
The extension manifest declares a background service worker (scripts/background.js
) in manifest.json
, but the actual file src/scripts/background.js
is completely empty. This creates unnecessary overhead and can cause confusion about whether background scripts are being used.
Steps to Reproduce
Steps to reproduce the behavior:
- Open
src/manifest.json
- Locate the
"background"
section (around line 11-13) - Note it declares
"service_worker": "scripts/background.js"
- Open
src/scripts/background.js
- Observe that the file is completely empty
Expected Behavior
The extension should either:
Have a functional background service worker with actual code
OR
Not declare a background service worker in the manifest if it's not being used
Actual Behavior
The manifest declares a background service worker, but the file is empty
Contribution Checklist
- I have searched existing issues to ensure this bug hasn't been reported
- I have provided clear reproduction steps
- I have included relevant environment details
- I have described both expected and actual behavior