Including remotely hosted code in a Manifest V3 item.

Hello @louis I've created a web extension using plasmo. And after successfully completing the extension I am uploading it on chrome web store over there I am getting the following rejection email. I've been banging my head around this issue a lot from past few weeks but I am unable to resolve it. And for some reason the storage permission is getting while generating build even though I am not adding in the manifest which is another reason for extension getting rejected from the web store. I am not sure if I am missed something. I am newbie to extensions I would really be greatful to your help. Can you please help me identify the issue? And please help me resolve it?
Following is my manifest
{
  "icons": {
    "16": "icon16.plasmo.6c567d50.png",
    "32": "icon32.plasmo.76b92899.png",
    "48": "icon48.plasmo.aced7582.png",
    "64": "icon64.plasmo.8bb5e6e0.png",
    "128": "icon128.plasmo.3c1ed2d2.png"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icon16.plasmo.6c567d50.png",
      "32": "icon32.plasmo.76b92899.png",
      "48": "icon48.plasmo.aced7582.png",
      "64": "icon64.plasmo.8bb5e6e0.png",
      "128": "icon128.plasmo.3c1ed2d2.png"
    },
    "default_popup": "popup.html"
  },
  "version": "0.0.1",
  "author": "Cliqueraft",
  "name": "supertasks.io extension",
  "description": "Quick decision making tool web extension",
  "permissions": [
    "storage",
    "identity"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline';"
  },
  "oauth2": {
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}
Was this page helpful?