{ "manifest_version": 3, "name": "SyncWatch", "version": "1.0.0", "description": "Sync media playback with a friend in real time", "permissions": [ "storage", "alarms", "tabs" ], "host_permissions": [""], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "SyncWatch" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ] }