Sleazy Fork is available in English.

Always Mobile xHamster

Switches to Mobile Version

// ==UserScript==
// @name        Always Mobile xHamster
// @namespace   robin.india@gmail.com
// @description Switches to Mobile Version
// @include     https://xhamster.com/*
// @version     1
// @grant       none
// @icon        https://static-ec.xhcdn.com/images/favicon/favicon-128x128.png
// ==/UserScript==
'use strict';

var m = /^(https?:\/\/)(\xhamster\.com\/.*)/.exec(location.href);
if (m) { window.location = m[1] + "m." + m[2] };