AmberCutie's Forum
An adult community for cam models and members to discuss all the things!

Chaturbate chat "pop-out" Chrome extension available for broadcasters...

  • ** WARNING - ACF CONTAINS ADULT CONTENT **
    Only persons aged 18 or over may read or post to the forums, without regard to whether an adult actually owns the registration or parental/guardian permission. AmberCutie's Forum (ACF) is for use by adults only and contains adult content. By continuing to use this site you are confirming that you are at least 18 years of age.
Dec 15, 2024
9
1
1
Hello there! For anyone looking for a way to isolate a fully functional chaturbate broadcaster chat "pop-out" including PM, User, and Settings tabs, I developed a chrome extension for just that... and it works even beter when paired with "Zoom Per Tab"

This would make it possible to make chat more neatly and easliy readablevfrom any device; a tablet or possibly phone even, but can still be utilized by computer monitors and/or TV's. Just message me here if you're interested and if enough of you are, I will make it a point to share it with you all. Donations and/or followers on our CB page would be greatly appreciated! Alyxxandmsstarzz is our handle. Thanks!
 
I think you'll find that people generally aren't that trusting and would prefer for you to publicly share the details in this thread, like screenshots, link to extension, etc so everyone can take a look at it and make sure it's safe.
Also code (especially code) since last time I checked browser extensions have access to everything that is displayed in a browser on any page including text input.
 
Upvote 0
I have this https://www.cbhours.com/eyecontact.php but you can't use it to res
ok yeah see I figured some of us would be interested in a fully functional chat display. I was able to keep messaging and the other tabs functional. PM, users, settings... I just want to intergrate zoom per tab function before I share. Essentially it just removes all the other elements from the broadcaster page leaving the chat tab and the other tabs and allows independant zoom so you can have the chat on its own but still have the default page up if needed and have independant zoom function. This way if you are using TVs or large monitors, you are able to zoom in and have the word wrap function. I am nearly done and will make a video on YT showing how it works
 
Upvote 0
I've attached all the files needed and included a demonstration video. Hope this works for everyone. This could make it possible to monitor chat on phones, tablets etc...
 

Attachments

  • Alyxx Sensation's Chat Pop-out.zip
    6.5 MB · Views: 3
Upvote 0
I've attached all the files needed and included a demonstration video. Hope this works for everyone. This could make it possible to monitor chat on phones, tablets etc...
Alternatively you can paste this in Chromes Dev Tools Console and it will do the chat only effect without the chrome extension. Go to your CB broadcast page Right-click on any area (chat box) and click inspect. Navigate to the console tab and allow pasting, then paste this:

document.querySelector(".BroadcastVideoPanel")?.remove();
document.getElementById("footer-holder")?.remove();
document.querySelector('[data-testid="room-tab-bar"]')?.remove();
document.querySelector(".appsTab")?.remove();

async function setElementStyles(el, styles) {
for (const [key, value] of Object.entries(styles)) {
el.style[key] = value;
}
}

const chatTabContainer = document.querySelector("#ChatTabContainer");
const body = document.body;
const html = document.documentElement;

setElementStyles(chatTabContainer, {
position: "fixed",
top: "0",
left: "0",
width: "100vw",
height: "100vh",
margin: "0",
overflow: "auto",
});

setElementStyles(body, {
position: "fixed",
top: "0",
left: "0",
width: "100vw",
height: "100vh",
margin: "0",
overflow: "hidden",
});

setElementStyles(html, {
overflow: "hidden",
});
 
Last edited:
Upvote 0