Sleazy Fork is available in English.

Xhamster Private Profiles v.5.5 (tweak Janvier56)

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

נכון ליום 25-12-2016. ראה הגרסה האחרונה.

// ==UserScript==
// @name           Xhamster Private Profiles v.5.5  (tweak Janvier56)

// @version 0.5.5

// 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/user/video/*/new-*.html*
// @exclude        https://xhamster.com/user/*/favorite-*.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/pornstars/*
// @exclude        https://xhamster.com/movies/*
// @exclude        https://xhamster.com/channels/*
// @exclude        https://xhamster.com/rankings/*

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

// @exclude        https://xhamster.com/search.php?q=*
// @exclude        https://xhamster.com/last50.php
// @exclude        https://xhamster.com/account_settings.php
// @exclude        https://xhamster.com/manage_post.php
// @exclude        https://xhamster.com/my_news.php*
// @exclude        https://xhamster.com/my/friend-requests
// @exclude        https://xhamster.com/my_fav_users.php
// @exclude        https://xhamster.com/my/friends*
// @exclude        https://xhamster.com/contact_list.php
// @exclude        https://xhamster.com/my/blocked-users*
// @exclude        https://xhamster.com/my_subscriptions.php

// @grant none
// ==/UserScript==


// found VIDEO PAGE for "not found" user: 
// From Player Video Page > click on user name send to "user not found" 
// >click "vid" button send to its Video page

// VIDEO PLAYER page example : https://xhamster.com/movies/5468620/asian_teen_blowjob_huge_facial.html
// Its NOT FOUND:              https://xhamster.com/user/Malibog-By-Nature
// Its VIDEOS page :           https://xhamster.com/user/video/Malibog-By-Nature/new-1.html
// Its FAV page:               https://xhamster.com/user/video/Malibog-By-Nature/favorite-1.html

// TEST BLOG :           https://xhamster.com/users/janvier57/blog
// TEST FAV BLOG:        https://xhamster.com/user/janvier57/posts/favorite-1.html
// TEST GALLERIES :      https://xhamster.com/user/photo/kerkata21/new-1.html
// TEST FAV GALLERIES :  https://xhamster.com/user/photo/kerkata21/favorite-1.html


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


// FAV BUTTON

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


// BLOG BUTTON
/*
var input=document.createElement("input");
input.type="button";
input.value="B";
input.onclick = gotoblog;
input.setAttribute("style", "font-size:10px;position:absolute;top:44px;left:40px;z-index:500!important;cursor:pointer!important; height:16px; line-height:9px;");
document.body.appendChild(input);
 
function gotoblog()
{
   var firstPart = 'https://xhamster.com/user/';
   var lastPart = window.location.href.match(/user\/(.*)/)[1];
   window.location.href = firstPart + lastPart + '/blog';
}
*/

// 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';
}
*/