I am building browser extension This is manifest.json
{
"name": "JS Code Injection",
"version": "1.0",
"manifest_version": 2,
"web_accessible_resources": [
"/injected.js"
],
"content_scripts": [
{
"matches": [ "*" ],
"js": [ "jquery.js", "background.js" ],
"run_at": "document_end",
}
]
}
Manifest is not valid JSON. Line: 13, column: 6, Trailing comma not allowed.
What's wrong with my manifest.json file here?
Also I tried to remove comma here
"run_at": "document_end",
And got this error:
Invalid value for 'content_scripts[0].matches[0]': Missing scheme separator.