You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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/"
]
}
The text was updated successfully, but these errors were encountered: