Sleazy Fork is available in English.

Xhamster Private Profiles v.4 (tweak Janvier56)

Takes you to private profiles pics and vids on xHamster (from USO, By Draly24 )

Pada tanggal 12 Desember 2016. Lihat %(latest_version_link).

// ==UserScript==
// @name           Xhamster Private Profiles v.4  (tweak Janvier56)
// http://userscripts-mirror.org/scripts/review/486335
// @namespace      http://userscripts.org/user
// @description    Takes you to private profiles pics and vids on xHamster (from USO, By Draly24 )



// @include        https://xhamster.com/user/*
// @include        https://*.xhamster.com/*

// @include        https://xhamster.com/*
// @include        https://xhamster.com/user/*

// @exclude        https://*.xhamster.com/user/*new-*.html

// @exclude        https://xhamster.com/movies/*
// @exclude        https://xhamster.com/photos/*
// @exclude        https://xhamster.com/posts/*

// @exclude        https://xhamster.com/favorites/*
// @exclude        https://xhamster.com/related/photos*

// @exclude        https://xhamster.com/manage_post.php*
// @exclude        https://xhamster.com/my_news.php*
// @exclude        https://xhamster.com/my_fav_users.php*
// @exclude        https://xhamster.com/contact_list.php*
// @exclude        https://xhamster.com/my_subscriptions.php*
// @exclude        https://xhamster.com/my/friends*
// @exclude        https://xhamster.com/my/blocked-users*
// @exclude        https://xhamster.com/account_settings.php*

// @exclude        https://xhamster.com/user/*/messages*
// @exclude        https://xhamster.com/users/*/blog*

// @version 0.4
// ==/UserScript==



var input=document.createElement("input");
input.type="button";
input.value="vids";
input.onclick = gotovids;
input.setAttribute("style", "font-size:10px;position:absolute;top:44px;left:3px;z-index:500!important;cursor:pointer!important;");
document.body.appendChild(input);
 
function gotovids()
{
   var firstPart = 'http://xhamster.com/user/';
   var lastPart = window.location.href.match(/user\/(.*)/)[1];
   window.location.href = firstPart + 'video/' + lastPart + '/new-1.html';
}

// SUPP PIC BUTTON
/* var input=document.createElement("input");
input.type="button";
input.value="pics";
input.onclick = gotopics;
input.setAttribute("style", "font-size:10px;position:absolute;top:44px;left:34px;z-index:500!important;cursor:pointer!important;");
document.body.appendChild(input);
 
function gotopics()
{
   var firstPart = 'http://xhamster.com/user/';
   var lastPart = window.location.href.match(/user\/(.*)/)[1];
   window.location.href = firstPart + 'photo/' + lastPart + '/new-1.html';
}
*/