Switches to Mobile Version
// ==UserScript== // @name Always Mobile xHamster // @namespace [email protected] // @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] };