Google chrome extension 权限“”未知或URL模式格式不正确

Google chrome extension 权限“”未知或URL模式格式不正确,google-chrome-extension,malformedurlexception,Google Chrome Extension,Malformedurlexception,我是新来的延伸发展 我已尝试将权限url设置为 * http://*/*,https://*/* 这些模式都不起作用 完整舱单: { "name": "Info", "description": "BS System Info", "version": "1.0", "manifest_version": 3, "backgro

我是新来的延伸发展 我已尝试将权限url设置为 * http://*/*,https://*/* 这些模式都不起作用

完整舱单:

{
  "name": "Info",
  "description": "BS System Info",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [{
    "js": ["script.js"],
    "matches": ["http://*/*","https://*/*","<all_urls>"],
    "css" : []
}],
  "permissions": [
    "storage",
    "activeTab",
    "system.cpu",
    "system.memory",
    "system.storage",
    "system.display",
    "tabs",
    "scripting",
    "http://*/*", "https://*/*", "chrome-devtools://*/*"
],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
        "16": "/images/icon_16.png",
        "32": "/images/icon_32.png",
        "48": "/images/icon_48.png",
        "128":"/images/icon_128.png"
      }
  }
}

ManifestV3中的站点/URL权限使用单独的键:主机权限

主机权限:[ *://*.example.org/ ], 权限:[ 存储 ],
有关详细信息,请确保仔细研究。

ManifestV3中的站点/URL权限使用单独的键:主机权限

主机权限:[ *://*.example.org/ ], 权限:[ 存储 ],
更多信息,请务必仔细研究。

耶稣基督,你是真的吗。。。谢谢你,上帝,你是真的吗。。。非常感谢。