I was building a chrome extension and used some icons from font awesome. However, those icons aren't loading because of the following error-
For reference, here is the manifest.json file-
{
"manifest_version": 2,
"name": "Safe and Secure",
"description": "Every security tool at one place.",
"version": "1.0.0",
"icons": {"128": "logo_128.png"},
"browser_action": {
"default_icon": "images/logo.png",
"default_popup": "index.html"
}
}