Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==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 = '';
- while(i <= 30)
- {
- newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Cam '+i+'</a></div>';
- i++;
- }
- clipsDiv.html(newHTML);
Advertisement
Add Comment
Please, Sign In to add comment