'Why i can't fix my manifest.json matches in content_scripts
I got an error with this text:
Invalid value for 'content_scripts[0].matches[0]': Empty path.
I don't know why it didn't work so I tried to change it to this:
"content_scripts": [ {
"matches": ["https://rotwo.bubbleapps.io"],
"json": ["manifest.json"]
} ]
Solution 1:[1]
You should write :
"content_scripts": [ {
"matches": ["https://rotwo.bubbleapps.io/*"],
"json": ["manifest.json"]
} ]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ronan Ca |
