Sleazy Fork is available in English.

xHamster Auto Old Design

Automatically switch back to the old design

Od 05.07.2018.. Pogledajte najnovija verzija.

// ==UserScript==
// @name         xHamster Auto Old Design
// @namespace    https://greasyfork.org/en/scripts/370063-xhamster-auto-old-design
// @version      0.5
// @description  Automatically switch back to the old design
// @author       Phlegomatic
// @exclude      https://xhamster.com/my/messages/*
// @include      https://xhamster.com/my/messages/unread
// @match        https://xhamster.com/*
// @grant        none
// ==/UserScript==

if (document.querySelector('.design-switcher') == null) {
    // No Switch button, thus New Design assumed
    var currentLocation = window.location;
    window.location = "https://xhamster.com/switch";
    setTimeout(function(){window.location = currentLocation}, 500);
}