// ==UserScript==
// @name Camwhores.tv Private Vids
// @namespace http://[Log in to view URL]
// @version 0.1
// @description automatically open private videos in a new tab using the URL script by reddit user Bakolas
// @author CodingWhileNaked
// @match http://[Log in to view URL]
// @grant none
// @downloadURL https://[Log in to view URL]
// @updateURL https://[Log in to view URL]
// ==/UserScript==
var baseURL = "http://[Log in to view URL]";
waitForKeyElements(".private", updatePrivateUrls);
function updatePrivateUrls(){
$(".private").each(function(){
var url = $(this).children('a').attr('href');
if(url.includes(baseURL)){
return true;
}
var urlEncode = encodeURIComponent($(this).children('a').attr('href'));
$(this).children('a').attr("href",baseURL + url).attr('target','_blank');
});
}
To embed this program on your website, copy the following code and paste it into your website's HTML: