Chrome Extension Error Content Security Policy

I am receiving 2 errors in console regarding my chrome extension for an image that follows the cursor around.

This is my manifest.json:

{
  "name": "Custom Cursor Extension",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Adds a custom cursor on developer.chrome.com.",
  "permissions": ["activeTab", "scripting"],
  "background": {
    "service_worker": "/background.js"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content.js"],
      "css": ["style.css"]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "image.png"
  },

   "content_security_policy": {
    "script-src": ["'self'", "https://www.gstatic.com", "'unsafe-eval'"], 
    "object-src": ["'self'"],
    "img-src": ["'self'", "data:", "https://www.gstatic.com"]
   }
}

Console Error messages

Image not loading