Sleazy Fork is available in English.

Chaturbate Clean

removes all add's, sub-selector on the tab's, shows video if you have no access, full screen with chat

< Rückmeldungen aufChaturbate Clean

Rezension: OK - Skript funktioniert, hat aber Fehler

Deleted user 994406
§
Veröffentlicht: 08.12.2022
Bearbeitet: 08.12.2022

There has been an issue where the tab for selecting rooms based on age, region, tokens per minute, etc no longer appears.

To fix, change the lines:

if (document.getElementsByClassName('c-1 endless_page_template').length > 0){
    thumbpage=true;
}

to

if (document.querySelectorAll('.c-1 .endless_page_template').length > 0){
    thumbpage=true;
}

This along with Aspegic's suggestion for layout seems to keep this script working for now.

Deleted user 994406
§
Veröffentlicht: 03.07.2023

It looks like this line needs to be edited again. So change the line

if (document.getElementsByClassName('c-1 endless_page_template').length > 0){
    thumbpage=true;
}

to

 if (document.querySelectorAll('.endless_page_template').length > 0){
        thumbpage=true;
    }

(basically just removed .c-1 from my previous edit.

I also edit this line:

observenode=document.getElementsByClassName('c-1 endless_page_template')[0];

similarly, to:

observenode=document.querySelectorAll('.endless_page_template')[0]

but I can't tell if it affects anything

Antwort schreiben

Anmelden um eine Antwort zu senden.