Upload addons for Opera addons store
-
pintawebware last edited by
Hello guys! Please help. I don't know, why failed to install extention.
I have message: manifest.json is invalid. Please correct it and try uploading again. The parser reported: {} is not of type 'string
My manifest.json
{ "manifest_version": 3, "name": "Extention", "description": "Extention", "version": "0.0.1", "content_scripts": [ { "matches": [ "https://*/*", "http://*/*" ], "js": ["content_script.js"], "run_at": "document_idle" } ], "content_security_policy": { }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Extention", "default_popup": "popup-signIn.html" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "contextMenus", "notifications", "tabs" ], "host_permissions": [ "https://google.com/", "*://*/*" ] }
What I need to do? Thanks for answer)
-
sgunhouse Moderator Volunteer last edited by
@pintawebware Well, as I on!y see one empty set of braces there, I'd guess you need to do something with your security policy.