StrangerMeetup next button

Will add a "Next stranger" button

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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");
}