HTML Link does not work

,

試してみましたが,"launchProcess": {"schemes": ["https"]}を指定したら動作しました。aタグやsp-linkのクリック,openExternalのどれも成功します。

I tried it and it works when using "launchProcess": {"schemes": ["https"]}. a-tag click, sp-link click, and openExternal all succeed.

Full text of manifest.json

{
  "id": "manifest-5-test",
  "name": "manifest-5-test",
  "version": "1.0.0",
  "main": "index.html",
  "manifestVersion": 5,
  "host": {
    "app": "PS",
    "minVersion": "23.3"
  },
  "requiredPermissions": {
    "launchProcess": {
      "schemes": ["https"]
    }
  },
  "icons": [
    {
      "width": 48, "height": 48, "path": "images/plugin.png", "scale": [ 1, 2 ],
      "theme": [ "darkest", "dark", "medium", "lightest", "light", "all" ],
      "species": [ "pluginList" ]
    }
  ],
  "entrypoints": [
    {
      "type": "panel",
      "id": "manifest-5-test",
      "label": {
        "default": "manifest-5-test"
      },
      "minimumSize": {"width": 230, "height": 100},
      "maximumSize": {"width": 230, "height": 294},
      "preferredDockedSize": {"width": 230, "height": 294},
      "preferredFloatingSize": {"width": 230, "height": 294},
      "icons": [
        {
          "width": 23, "height": 23, "path": "images/dark-panel.png", "scale": [ 1, 2 ],
          "theme": [ "darkest", "dark", "medium" ], "species": [ "chrome" ]
        }, {
          "width": 23, "height": 23, "path": "images/light-panel.png", "scale": [ 1, 2 ],
          "theme": [ "lightest", "light" ], "species": [ "chrome" ]
        }
      ]
    }
  ]
}
1 Like