Hi, so I am a first time extension developer and currently making an extension for both chrome and firefox. Unfortunately, I have been running into the issue of firefox simply not accepting my manifest file. I’ve literally been trying for the better part of 30 minutes to get it working, with no success. Whenever I try to temporarily load the extension using the debugging tool, I get this error: File C:\Users\Max\Documents\extension-projects\YTAdBlockerBypass-firefox.zip does not contain a valid manifest
This is my manifest file:
{ "manifest_version": 3, "name": "Bypass YouTube Adblocker", "version": "1.0", "description": "This extension automatically removes YouTube's adblocker warning and resumes videos.", "permissions": [ "activeTab", "scripting" ], "icons": { "48": "icon-48.png", "96": "icon-96.png" }, "action": { "default_icon": { "48": "icon-48.png", "96": "icon-96.png" } }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["content.js"] } ], "applications": { "gecko": { "id": "ytadblockerbypass@hauber" } }, "scripting": { "host_permissions": [ "http://*/*", "https://*/*" ], "matches": [ { "include_globs": ["<all_urls>"], "js": ["content.js"] } ] } }
Anyone able to tell me what the issue here is? I would gladly appreciate a response