StrangerMeetup next button

Will add a "Next stranger" button

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        StrangerMeetup next button
// @description Will add a "Next stranger" button
// @namespace   maoistscripter
// @version     1.1
// @grant       none
// @include https://strangermeetup.com/*
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/keymaster/1.6.1/keymaster.min.js
// ==/UserScript==
$(document).ready(function() {
    
    var pressed = localStorage.getItem('pressed');
  
    // StrangerMeetup - Chat
    if ($('.container').hasClass("chat-content")) {

        $(".container").append('<button class="next-stranger">Next stranger (ESC)</button>');
        $(".next-stranger").css("background-color", "#49AB99");
        $(".next-stranger").click(next);
        key('esc', next);
        
    // StrangerMeetup - Home
    } else {

        if (pressed !== null) {
            localStorage.removeItem('pressed');
            window.location = 'https://strangermeetup.com/chat';
        }
    }
  
});

function next() {
    $("#text").focusout();
    $(".next-stranger").html('Next stranger ...');
    window.onbeforeunload = null;
    window.location = 'https://strangermeetup.com/chat';
    localStorage.setItem('pressed', "true");
}