{ "manifest_version": 3, "name": "Live Text Replacer", "version": "1.0", "description": "Replace words and phrases on web pages using a custom dictionary.", "permissions": ["storage", "activeTab", "scripting"], "host_permissions": [""], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ] }