{ "manifest_version": 3, "name": "Dynamic CSS Injector", "version": "1.1", "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "" ], "js": [ "injector.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html", "default_title": "Custom CSS" } }