{ "manifest_version": 3, "name": "Social Media Time Tracker", "version": "1.0", "description": "Suivre le temps passé sur les réseaux sociaux avec une barre de chargement permanente.", "permissions": [ "activeTab", "storage", "webNavigation", "scripting", "alarms" ], "icons": { "16": "images/logo-16.png", "48": "images/logo-48.png", "128": "images/logo-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images/logo-16.png", "48": "images/logo-48.png", "128": "images/logo-128.png" } }, "content_scripts": [ { "matches": [""], "js": ["content.js"] } ] }