{ "name": "chrome-plugin", "version": "1.0", "description": "Build an Extension!", "manifest_version": 3, "permissions": ["tabs", "activeTab", "storage"], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [""], "js": ["content.js"] } ] }