Distribution, Error: Parsing plugin file timed out

Hi,
When submitting for distribution I get an error uploading the plugin file.
“Parsing plugin file timed out”

I’ve tried various versions of the manifest.
Here’s the latest:

{
  "id": "d720051b",
  "name": "ChanceMachine",
  "version": "1.0.0",
  "main": "index.html",
  "host": {
    "app": "PS",
    "minVersion": "22.0.0"
  },
  "manifestVersion": 5,
  "entrypoints": [
    {
      "type": "panel",
      "id": "Chance Machine",
      "minimumSize": {
        "width": 230,
        "height": 350
      },
      "maximumSize": {
        "width": 2000,
        "height": 2000
      },
      "preferredDockedSize": {
        "width": 230,
        "height": 700
      },
      "preferredFloatingSize": {
        "width": 230,
        "height": 700
      },
      "icons": [
        {
          "width": 32,
          "height": 32,
          "path": "icons/icon_D.png",
          "scale": [
            1,
            2
          ],
          "theme": [
            "dark",
            "darkest"
          ],
          "species": [
            "generic"
          ]
        },
        {
          "width": 32,
          "height": 32,
          "path": "icons/icon_N.png",
          "scale": [
            1,
            2
          ],
          "theme": [
            "lightest",
            "light"
          ],
          "species": [
            "generic"
          ]
        }
      ],
      "label": {
        "default": "Chance Machine"
      }
    }
  ],
  "icons": [
    {
      "width": 23,
      "height": 23,
      "path": "icons/dark.png",
      "scale": [
        1,
        2
      ],
      "theme": [
        "darkest",
        "dark",
        "medium"
      ]
    },
    {
      "width": 23,
      "height": 23,
      "path": "icons/light.png",
      "scale": [
        1,
        2
      ],
      "theme": [
        "lightest",
        "light"
      ]
    }
  ],
  "requiredPermissions": {
    "network": {
      "domains": ["https://adobe.com"]
    },
    "clipboard": "readAndWrite",
    "webview": {
      "allow": "yes",
      "domains": ["https://*.adobe.com", "https://*.google.com"]
    },
    "launchProcess": {
      "schemes": ["https", "slack"],
      "extensions": [".xd", ".psd"]
    }
  }
}

Don’t know if that’s the actual reason, but:

manifest v5 feature set requires PS 23.3.0 or higher

https://developer.adobe.com/photoshop/uxp/2022/guides/uxp_guide/uxp-misc/manifest-v5/

Thanks. I just tried by modifying the example manifest in that link, but still not working.

{
  "manifestVersion": 5,
  "id": "d720051b",
  "name": "Chance Machine",
  "version": "1.0.0",
  "main": "index.html",
  "host": {
      "app": "PS",
      "minVersion": "23.3.0"
  },
  "entrypoints": [
      {
          "type": "command",
          "id": "commandFn",
          "label": {
              "default": "Show A Dialog"
          }
      },
      {
          "type": "panel",
          "id": "chanceMachine",
          "label": {
              "default": "Chance Machine"
          },
          "minimumSize": {"width": 230, "height": 200},
          "maximumSize": {"width": 2000, "height": 2000},
          "preferredDockedSize": {"width": 230, "height": 700},
          "preferredFloatingSize": {"width": 230, "height": 700},
          "icons": [
              {"width":23,"height":23,"path":"icons/dark.png","scale":[1,2],"theme":["darkest","dark","medium"]},
              {"width":23,"height":23,"path":"icons/light.png","scale":[1,2],"theme":["lightest","light"]}
          ]
      }
  ],
  "icons": [
      { "width": 23, "height": 23, "path": "icons/icon_D.png", "scale": [ 1, 2 ], "theme": [ "dark", "darkest" ], "species": [ "generic" ] },
      { "width": 23, "height": 23, "path": "icons/icon_N.png", "scale": [ 1, 2 ], "theme": [ "lightest", "light" ], "species": [ "generic" ] }
  ],
  "requiredPermissions": {
      "network": {
          "domains": [
              "https://adobe.com"      
          ]
      },
      "clipboard": "readAndWrite",
      "webview": {
          "allow": "yes",
          "domains": [ "https://*.adobe.com", "https://*.google.com"]
      },
      "launchProcess": {
          "schemes":
              [ "https", "slack"],
          "extensions":
              [ ".xd", ".psd"]
      }
  }
}