Post

Replies

Boosts

Views

Activity

Comment on Background script in the form of a service worker cannot be debugged
Do not use service worker, at least not for debugging. Modify manigest and use this: "background": { "scripts": ["background.js"], "persistent": false } instead of this: "background": { "service_worker": "background.js" }
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’25
Comment on Background script in the form of a service worker cannot be debugged
Do not use service worker, at least not for debugging. Modify manigest and use this: "background": { "scripts": ["background.js"], "persistent": false } instead of this: "background": { "service_worker": "background.js" }
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’25
Comment on Background script in the form of a service worker cannot be debugged
You have to not to use a service worker for a background script (at least not for debugging). Use this: "background": { "scripts": ["background.js"], "persistent": false } instead of this: "background": { "service_worker": "background.js" }
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’25