Sleazy Fork is available in English.

Chaturbate Enhancer

Vylepšuje Chaturbate přidáním několika nových funkcí.

< Feedback on Chaturbate Enhancer

Review: OK - script works, but has bugs

§
Posted: 14. 11. 2023
Edited: 14. 11. 2023

Worked great, but today something has changed at CB. The multicam view page became narrow, like half of a Full HD screen. I managed to fix it temporarily by

document.getElementById('cb-enh-multi-content').style.width = "100%";

Looking forward to your update.

§
Posted: 17. 11. 2023

make a new script in tampermonkey and add

// ==UserScript==
// @name Set Element Width on Chaturbate
// @namespace http://your-namespace.com
// @version 1.0
// @description Set the width of an element with a specific ID to 70% on Chaturbate
// @author Your Name
// @match https://chaturbate.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

// Function to set the width of the element when found
function setElementWidth() {
var element = document.getElementById('cb-enh-multi-content');
if (element) {
element.style.width = '70%';
}
}

// Check for the element every 100 milliseconds
var intervalId = setInterval(function() {
setElementWidth();
}, 100);

// Stop checking after 5 seconds (adjust as needed)
setTimeout(function() {
clearInterval(intervalId);
}, 5000);
})();

improper.devAuthor
§
Posted: 19. 11. 2023

Fixed in v4.0.4.

Please consider supporting Chaturbate Enhancer development - see how at https://cb-enh.improper.dev/contribute

Post reply

Sign in to post a reply.