{ "manifest_version": 3, "name": "Anti-Doom Scrolling", "version": "1.1", "description": "Detects prolonged continuous scrolling on social sites and gently nudges you to take a break.", "permissions": [ "storage", "notifications" ], "host_permissions": [ "" ], "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons/icon128.png", "48": "icons/icon128.png", "128": "icons/icon128.png" } }, "background": { "service_worker": "background.js" } }