CSS 未在 chrome 扩展中加载

CSS Not loading in chrome extension

我正在尝试将自定义 css 注入网站。我不断收到错误消息

Failed to load extension
File
C:\Users\username\Desktop\Mineplex+
ErrorCould not load css '' for content script.

manifest.js:

  "name": "Mineplex+",
  "author": "UCYT5040",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": ["scripting", "tabs", "https://*.mineplex.com", "http://*.mineplex.com/*"],
  "content_scripts": [
    {
      "matches": ["https://*.mineplex.com/*"], 
      "css" : ["https://Better-Mineplex-Forums.ucyt5040.repl.co/style.css"]
    }
    ],
  "action": {}
}

@wOxxOM 作为评论回答。

css should contain a local path inside the extension, not an external URL. Download style.css and place it inside the extension, then specify style.css in css key.