Manifest file is missing or unreadable Could not load manifest.
Hi Aarav, Whenever I try to upload my extension to Chrome using the "Load Unpack" tab in Chrome, I keep getting this error. Manifest file is missing or unreadable Could not load manifest. The manifest is below
{ "manifest_version"; 3, "name"; "TEST", "version"; "4.5", "description"; "XYZ Chrome Extension.", "permissions"; [ "activeTab", "storage" ], "action"; { "default_popup"; "popup.html", "default_icon"; { "16"; "icons/icon16.png", "48"; "icons/icon48.png", "128"; "icons/icon128.png" } } "icons"; { "16"; "icons/icon16.png", "48"; "icons/icon48.png", "128"; "icons/icon128.png" } "content_scripts"; [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "background"; { "service_worker"; "background.js" } "action"; { "default_popup"; "popup.html", "default_icon"; "icons/icon16.png" } "permissions"; ["activeTab"], "host_permissions"; [ "https://xyz/" ] }
Will take a look.