Jimmie1717

UserScript: PlayBingo.gg Popouts

May 31st, 2025 (edited)
6,419
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         PlayBingo Popouts
  3. // @namespace    http://jimmie1717.com/
  4. // @version      2025-05-31
  5. // @description  Add popouts to playbingo.gg boards.
  6. // @author       Jimmie1717
  7. // @match        https://playbingo.gg/rooms/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     let cols=["COL-1", "COL-2", "COL-3", "COL-4", "COL-5"],
  15.         rows=["TL-BR", "ROW-1", "ROW-2", "ROW-3", "ROW-4", "ROW-5", "BL-TR"];
  16.  
  17.  
  18.     function addPopouts(board) {
  19.         let top=document.createElement('div'),
  20.             left=document.createElement('div');
  21.         top.classList.add("popouts", "top");
  22.         for(var i=0; i<cols.length; i++){
  23.             let popout = document.createElement("div");
  24.             popout.textContent = cols[i];
  25.             top.append(popout);
  26.         }
  27.         left.classList.add("popouts", "left");
  28.         for(var j=0; j<rows.length; j++){
  29.             let popout = document.createElement("div");
  30.             popout.textContent = rows[j];
  31.             left.append(popout);
  32.         }
  33.         board.prepend(top);
  34.         board.prepend(left);
  35.     }
  36.  
  37.     setTimeout(()=>{
  38.         let container=document.querySelector("header").nextElementSibling.children[0].children[0];
  39.         for(var i=0; i<container.children.length; i++){
  40.             if(i<2) addPopouts(container.children[i].children[3]);
  41.             else if(i<3) addPopouts(container.children[i].children[2]);
  42.             else addPopouts(container.children[i].children[0]);
  43.         }
  44.     }, 2000);
  45. })();
Advertisement
Comments
  • User was banned
  • Xorfidar
    45 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Xorputir
    39 days
    # CSS 0.06 KB | 0 0
    1. We just shared HQ data on our channel: https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment