Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function togglePin() {
- let buttons = document.querySelectorAll('[data-tid="m4b_button"]');
- if (buttons.length >= 3) {
- buttons[2].click(); // Klik tombol "Unpin"
- setTimeout(() => {
- let updatedButtons = document.querySelectorAll('[data-tid="m4b_button"]');
- if (updatedButtons.length >= 3) {
- updatedButtons[2].click(); // Klik tombol "Pin"
- }
- }, 1000);
- } else {
- console.log("Tidak ditemukan tombol m4b_button yang cukup.");
- }
- // Atur waktu acak untuk eksekusi berikutnya (antara 1-3 menit)
- let nextRun = Math.floor(Math.random() * (3 - 1 + 1) + 1) * 60000; // 1-3 menit dalam milidetik
- console.log(`Menjalankan ulang dalam ${nextRun / 60000} menit...`);
- setTimeout(togglePin, nextRun);
- }
- // Jalankan pertama kali
- togglePin();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement