{ "manifest_version": 3, "name": "Emerson Product Scraper", "version": "2.0", "description": "Scrapes product data from Emerson Ecologics brand pages.", "permissions": [ "activeTab", "scripting", "tabs" ], "host_permissions": [ "https://www.emersonecologics.com/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [""], "js": ["content.js"] } ], "action": { "default_popup": "popup.html" } }