Bossman Austin Curtis Peterson / BossmanJack / AustinGambles / Austin_07 / irondollah - Gambling addict, convicted felon, scammer, and raging manchild that hates his fucking life, FAKE MONEY

BossmanJack live chat for stream commentary.

Duration of Rehab Saga Mk. IV

  • < 1WK

    Votes: 314 20.9%
  • < 3 WK

    Votes: 438 29.2%
  • < 6WK

    Votes: 217 14.5%
  • Completed Successfully

    Votes: 532 35.4%

  • Total voters
    1,501
Bossman had a great monkey sesh today

This is bossman talking with Jose ( a cool nigga)



This is bossman getting in a shouting match with a queens nigga and getting told to STFU by ratdad (this was at 3am BMT btw)
 
Austin accidentally flashes his jeet.bet referral data and its WEAK. I'd be surprised if he isn't getting dropped by the end of next week
1753009177949.webp


 
tampermonkey script for sneedchyat that replaces tor links with clearnet and vice versa @Avenue asked I could make
1753014847779.webp
JavaScript:
// ==UserScript==
// @name         Sneedchat link fixer
// @namespace    http://tampermonkey.net/
// @version      2025-07-20
// @description  try to take over the world!
// @author       You
// @match        https://kiwifarms.st/test-chat*
// @match        https://kiwifarms.net/test-chat*
// @match        https://kiwifarmsaaf4t2h7gc3dfc5ojhmqruw2nit3uejrpiagrxeuxiyxcyd.onion/test-chat*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=mozilla.org
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    const fixableHosts = ['kiwifarmsaaf4t2h7gc3dfc5ojhmqruw2nit3uejrpiagrxeuxiyxcyd.onion', 'kiwifarms.net', 'kiwifarms.st'];
    const currentHost = location.host.split('.').slice(-2).join('.');
    const targetElements = {
        a: ['href'],
        img: ['src']
    };
    const observer = new MutationObserver(muts => {
        for(const mutation of muts) {
            for(const node of mutation.target.childNodes)
                recurse(node);
            /**
             *
             * @param {HTMLElement} node
             */
            function recurse(node) {
                for(const child of node.childNodes) {
                    recurse(child);
                    if(targetElements[child.nodeName.toLocaleLowerCase()] === undefined || child.getAttribute('sneedlink-fixed'))
                        continue;
                    for(const attributeName of targetElements[child.nodeName.toLocaleLowerCase()]) {
                        const attributeValue = child.getAttribute(attributeName);
                        try {
                            const url = new URL(attributeValue);
                            let canFix = false;
                            let targetReplaceHost = '';
                            for(const whitelistedHost of fixableHosts)  {
                                if(url.host.endsWith(whitelistedHost))
                                {
                                    targetReplaceHost = whitelistedHost;
                                    canFix = true;
                                    break;
                                }
                            }
                            if(!canFix)
                                continue;
                            if(url.host.endsWith(currentHost))
                                continue;
                            child.setAttribute(attributeName, attributeValue.replace(targetReplaceHost, currentHost));
                            child.setAttribute('sneedlink-fixed', '#Bossman4LoTY2025'); 
                         
                            const wrenchIcon = document.createElement('img');
                            wrenchIcon.alt = `link adjusted from ${targetReplaceHost} to ${currentHost}`;
                            wrenchIcon.style = 'height:12px!important;width:12px!important;margin-left:.125rem!important;';
                            wrenchIcon.src = 'https://qu.ax/nRlEp.png';
                            child.appendChild(wrenchIcon);
                        }catch { }
                    }
                }
            }
        }
    });
    observer.observe(document.getElementById('chat-messages'), {
        attributes: false,
        childList: true,
        characterData: false,
        subtree:true,
     
    });
})();
 
Back