I'm encountering an issue while trying to load my development chrome extension for debugging. The error message I am receiving is:
Issue with 'content_scripts[0].matches[0]' value: Path cannot be empty.
Manifest failed to load.
This is the structure of my manifest file:
{
"name": "My Extension Name",
"version": "1.0",
"description": "....!",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://localhost:*/admin",
"https://myapp.mysite.com.br"
],
"js": [
"jquery.min.js",
"content.js"
],
"css": [
"estilera.css"
]
}
]
}