This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (window.location.origin !== "https://www.instagram.com") { | |
alert( | |
"You need to be on the Instagram website for this script to work.", | |
); | |
location.href = "https://www.instagram.com"; | |
console.clear(); | |
} | |
const sleep = ms => new Promise(r => setTimeout(r, ms)); | |
const random = (min, max) => Math.floor(Math.random() * (max - min)) + min; |