{ "manifest_version": 3, "name": "Page Editor", "version": "1.0.0", "description": "Edit and save text on any webpage locally", "permissions": [ "storage", "scripting" ], "host_permissions": [ "" ], "content_scripts": [ { "matches": [ "" ], "js": [ "content.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Page Editor" } }