StrangerMeetup next button

Will add a "Next stranger" button

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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