View all cams on reallifecam.com

View all cams without paying

Tento skript by neměl být instalován přímo. Jedná se o knihovnu, kterou by měly jiné skripty využívat pomocí meta příkazu // @require https://update.sleazyfork.org/scripts/4986/17013/View%20all%20cams%20on%20reallifecamcom.js

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

Greasy Fork

One does not simply grease a fork!
boy van kan
Scripts
Forum
Help
View all cams on reallifecam.com

View all cams without paying

    Informatie
    Code
    Geschiedenis
    Feedback (0)
    Statistieken

// ==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);