浏览器扩展导入时The “background.scripts“ key cannot be used with manifest_version 3

2023-12-23 06:31:00

导入浏览器扩展时,出现下列问题:

The “background.scripts” key cannot be used with manifest_version 3. Use the “background.service_worker” key instead

  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },

改为

"background": { "service_worker": "background.js" },

END.

文章来源:https://blog.csdn.net/weixin_41870042/article/details/135163105
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。