-
@JarSyr @ChromiumDev It is possible today to find out from a PWA if it’s corresponding native Android app is installed: web.dev/get-installed-related-apps/.
-
@JarSyr @ChromiumDev If the question is purely about finding out if the PWA is installed (vs. running in a browser tab), then you can check via
if (window.matchMedia('(display-mode: standalone)').matches) { // installed }