View all cams on reallifecam.com

View all cams without paying

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name       View all cams on reallifecam.com
// @namespace  None
// @version    1
// @description  View all cams without paying
// @match      http://reallifecam.com/
// @copyright  2012+, None
// @require    http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==
var clipsDiv = $(".clips.low");
var i = 1;
var newHTML = '';
var room_name = "";
while(i <= 30)
{
    if(6 <= i && i <= 10) {
        switch( i )
        {
            default: room_name = "Living Room"; break;
            case 7: room_name = "Kitchen"; break;
            case 8: room_name = "Hall"; break;
            case 9: room_name = "Bedroom (Audio)"; break;
            case 10: room_name = "Bathroom"; break;
        }
        newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Lora and Max [APT 1]  - '+room_name+'</a></div>';
    }
    if(11 <= i && i <= 15) {
        switch( i )
        {
            default: room_name = "Living Room"; break;
            case 12: room_name = "Kitchen"; break;
            case 13:
            case 14: room_name = "Bathroom (" + (i-12).toString() + ")"; break;
            case 15: room_name = "Bedroom (Audio)"; break;
        }
        newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Maria and Jon [APT 2] - '+room_name+'</a></div>';
    }
	    if(1 <= i && i <= 5) {
        switch( i )
        {
            default: room_name = "Living Room"; break;
            case 2: room_name = "Kitchen"; break;
            case 3: room_name = "Hall"; break;
            case 4: room_name = "Bedroom (Audio)"; break;
            case 5: room_name = "Bathroom"; break;
               
        }
        newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Alina and Anton [APT 3]  - '+room_name+'</a></div>';
    }
    if(16 <= i && i <= 21) {
        switch( i )
        {
            default: room_name = "Living Room"; break;
            case 17: room_name = "Kitchen"; break;
            case 18: room_name = "Hall"; break;
            case 19:
            case 20: room_name = "Bathroom (" + (i-18).toString( ) +")"; break;
            case 21: room_name = "Bedroom (Audio)"; break;
        }
        newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Kristina and Evgeni [APT 4] - '+room_name+'</a></div>';
    }
    if(22 <= i && i <= 27) {
        switch( i )
        {
            case 22: room_name = "Living Room"; break;
            case 23: room_name = "Kitchen"; break;
            case 24: room_name = "Dance"; break;
            case 25: room_name = "Bathroom"; break;
            default: room_name = "Bedroom (Audio) (" + (i-25).toString( ) + ")"; break;
        }
        newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Nastya and Zheka [APT 5] - '+room_name+'</a></div>';
    }
    i++;
    room_name = "";
}
clipsDiv.html(newHTML);