<!--DOCTYPE html--> <html lang="ar"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>فتح تطبيق مشغل الفيديو</title> </head> <body> <button onclick="openVideoApp()">فتح مشغل الفيديو</button> <script> function openVideoApp() { // استبدال "com.brouken.player" بـ package name لتطبيقك var intentUrl = "intent://versatile-wildsidetv-1-fr.samsung.wurl.tv/playlist.m3u8#Intent;package=com.player.pandagoa;scheme=http;end"; window.location = intentUrl; } </script> </body> </html> <!--DOCTYPE html--> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Launch My App</title> </head> <body> <h1>Launch My App</h1> <a href="com.player.pandagoal://open?url=https://versatile-wildsidetv-1-fr.samsung.wurl.tv/playlist.m3u8">Open Video in My App</a> </body> </html>
0 Comments