[ 🏛️ new / 🏖️ lounge / 🧻 scrap ] [ 🔎 ] [ 🏠 Home ]

/lounge/ - Lounge

Ultimate Manchildren's Playpen
Name
Option
Subject
Comment
Flag
File
YouTube
Password (For file deletion.)


File: 1735057527678.webm 783.09 KB, 576x1024, in the fields.webm

 No.96105[View All]

YLYL #6

Prev: >>87023
243 posts and 141 image replies omitted. Click reply to view.

 No.104262

>>104256
On one hand, disabled. On the other, sex tourist.

 No.104276

>>104262
That should have been hot wheels.

 No.104279

>>104276
Unfortunately it seems like he's carrying his brittle bones genes on with a pinoy hooker.

 No.104280

>>104279
He's reproducing? 🤢🤮

 No.104281

>>104279
he got exiled from philippines years ago have you been living under a rock

 No.104282

>>104281
Oh. Good. It appears that fattie no legs won't die.

 No.104283

>>96105
So tired of seeing this repulsive woman's potato face. Whoever makes these threads needs to stop using ugly images and videos for the OP

 No.104284

>>104283
This is You Laugh You Lose, not You Goon You Lose

 No.104285

>>104281
Yeah, strangely I don't keep up to date on irrelevant sacks of goblin bones with diaperfur fetishes. Last I paid attention, he was talking about having children with a pinoy woman.

 No.104286

>>104285
Extremely evil that he would want to pass on his disease to another soul

>>104284
It's not funny though, she thinks that she looks good but she's a 4/10. It's just her trying to show off her 4/10 looks with a stupid expression

 No.104289

>>104286
A long time ago, he said he was all for limiting the birth of new disabled people, but he's also always been a duplicitous little gremlin. I don't exactly hate defective people, but I hate people who force others to be born into intense suffering. A lot of SBSK videos are existential nightmare fuel. There was one of a permanently bedridden kid who was born without skin or with bleeding sores over most of his body. At one point, he started sobbing and it made me wish his parents could have been involuntarily euthanized.

 No.104290

>>104284
it'd be less pathetic if they just had gay sex

 No.104322


 No.104323


 No.104324


 No.104325


 No.104377

File: 1755717301092-0.webm 841.72 KB, 576x1024, 1755698957470879.webm

File: 1755717301092-1.jpg 131.89 KB, 1080x1080, 1755712919681207.jpg


 No.104380

I KEEP HIDING THIS UGLY PEASANTS FACE AND IT KEEPS APPEARING AGAIN

 No.104381

>>104377
Taco Bell literally puts sawdust in their beef

 No.104382

>>104377 (checked)
I can eat taco bell two days in a row with no issues but if I go for a third I get diarrhea

r8 my bloodline

 No.104401

File: 1755812344261.png 749.77 KB, 680x680, 1755789102045955.png


 No.104499

File: 1755903814196.png 62.65 KB, 179x202, image.png

heh

 No.104563

File: 1756040817347.jpg 72.64 KB, 578x680, Gyk4hIRXEAAziXu.jpg


 No.104564

>>104563
He kind of looks like Steve Carrel lol heh

 No.104581

>>104563
It's simply because their brain always sees men with beards and women with smooth faces. Seeing a "man" without a beard gets the wires crossed

 No.104584


 No.104585


 No.104586

>>104585
hes got horizontal videos
hes got vertical videos

hes got it all

 No.104587

>>104585
>>104586
why is this so erotic?

 No.104615

File: 1756261315557-0.jpg 624.7 KB, 1170x1395, 1756258152775451.jpg

File: 1756261315557-1.jpg 252.79 KB, 1170x1633, 1756259577877896.jpg

File: 1756261315557-2.jpg 349.53 KB, 1170x1360, 1756260883270200.jpg

>someone is doing mass swattings across the US with AI generated voices and is able to spam hundreds of calls to simulate an actual threat

 No.104642

File: 1756376010756.jpg 158.85 KB, 933x596, reviewgurl.jpg


 No.104664


 No.104709

>x.com/LaurenWitzkeDE/status/1960172671997816932

 No.104743

File: 1756735402799.png 1.75 MB, 1500x900, 1756716474045379.png


 No.104941


 No.104942


 No.104943


 No.104944


 No.104945


 No.105080

File: 1757515617809.mp4 3.72 MB, 576x770, whats_this.mp4


 No.105097

File: 1757561890369.jpg 601.81 KB, 1080x1420, img_1_1757187707558.jpg


 No.105127

File: 1757770491755.mp4 537.91 KB, 854x480, Wedding.mp4


 No.105143

File: 1757813176490.mp4 659.14 KB, 576x1024, 7471989865647705385.mp4


 No.105144


 No.105147

> want to peruse these videos
> always auto-plays at max volume
> ignores volume setting of previous webm
> no options anywhere on this site that lets you alter the default volume of videos by leaving that info in a cookie like 8kun does
> I am not fucking with my browser's audio settings, nor touching my whole PC's audio settings to set everything's default volume lower or make it so my entire browser's default volume is lower (meaning everything else is too quiet to hear) just to watch these videos in this thead

Oh well.

 No.105156

>>105147
Create new userscript in greasemonkey (firefox) or violentmonkey (chromium), paste this in and save:

// ==UserScript==
// @name         4chon.me Default Video Volume
// @description  Set lower default video volume when expanding videos on 4chon
// @match        https://4chon.me/*/
// @match        https://4chon.me/*/index.html
// @match        https://4chon.me/*/res/*.html
// ==/UserScript==

(function() {
	'use strict';

	// Change this value to set your preferred volume (0.0 to 1.0)
	const DEFAULT_VOLUME = 0.25;
	// =========================

	// Wait for the page to load
	window.addEventListener('load', function() {
		// Override the setting function to force target volume
		if (typeof setting === 'function') {
			// Store the original setting function
			var originalSetting = setting;

			// Override the setting function
			window.setting = function(name) {
				if (name === 'videovolume') {
					return DEFAULT_VOLUME; // Force target volume
				}
				// For other settings, use the original function
				return originalSetting(name);
			};

			// Also override changeSetting to prevent volume changes from sticking
			if (typeof changeSetting === 'function') {
				var originalChangeSetting = changeSetting;
				window.changeSetting = function(name, value) {
					if (name !== 'videovolume') {
						originalChangeSetting(name, value);
					}
					// Ignore volume changes to maintain target volume
				};
			}
		}

		// If the setting function doesn't exist yet, set up a mutation observer
		// to catch when it's defined and override it
		else {
			var observer = new MutationObserver(function(mutations) {
				if (typeof setting === 'function') {
					observer.disconnect();

					// Store the original setting function
					var originalSetting = setting;

					// Override the setting function
					window.setting = function(name) {
						if (name === 'videovolume') {
							return DEFAULT_VOLUME; // Force target volume
						}
						// For other settings, use the original function
						return originalSetting(name);
					};

					// Also override changeSetting to prevent volume changes from sticking
					if (typeof changeSetting === 'function') {
						var originalChangeSetting = changeSetting;
						window.changeSetting = function(name, value) {
							if (name !== 'videovolume') {
								originalChangeSetting(name, value);
							}
							// Ignore volume changes to maintain target volume
						};
					}
				}
			});

			observer.observe(document, {
				childList: true,
				subtree: true
			});
		}
	});
})();

 No.105165

I get $100.00 if anyone joins.

https://py.pl/oUYB

 No.105169

>>105165
I don't use Paypal, that shit is scammy, they can freeze your account and steal your funds whenever they want with no consequences, like a memecoin rug pull.
Btw did you read through this thread already?
https://www.reddit.com/r/beermoney/comments/1kro2bh/most_common_beer_money_sites_do_not_create/

 No.105192

>>105156
Oh, cool. Thank you, kind anon! (Assuming this isn't a virus.)

 No.105196

>>105192
forgot to also match board index pages 2, 3, 4, etc., add:
// @match        https://4chon.me/*/*.html



[Return] [Catalog] [Top][Post a Reply]
Delete Post [ ]