Skip to content

Instantly share code, notes, and snippets.

View hctilg's full-sized avatar
🥀
Depression and Studying for the entrance exam (Konkour)

Mahoor Nemati ✨ hctilg

🥀
Depression and Studying for the entrance exam (Konkour)
View GitHub Profile
@the-pesar
the-pesar / script.js
Created September 13, 2024 10:56
To bypass airdrop Telegram miniapps preventation on computer
const el = document.createElement("iframe")
el.src = document.getElementsByTagName('iframe')[0].src.replace(/(tgWebAppPlatform=)[^&]+/, "$1android")
document.querySelector("iframe").remove()
el.height = "100%"
el.width = "100%"
document.querySelector(".web-app-body").appendChild(el)