The full-screen functionality was achieved using an HTML page tag, which has now been deprecated. As a result, the old icons were created by a browser that still supported it, while the new ones were not. For some reason, Chrome detects that they are old icons and reactivates the handling, whereas it does not do so for the new ones.
Currently, the recommended way to enable this functionality is to create a manifest for PWAs. To do this, you need to customize the desktop.htm/desktop_sm.htm pages by placing them in the custom folder and adding the following tag in the HEAD area:
<link rel="manifest" href="manifest.json" />
Then, you will need to create the manifest.json file in the custom folder.
For the content, you can refer to this page:
https://developer.mozilla.org/en-US/doc ... s/Manifest