Greasy Fork is available in English.

OkCupid Username QuickMatch

Adds names to QuickMatches on OkCupid.

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 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           OkCupid Username QuickMatch
// @namespace      Eckankar-at-Gmail-dot-com
// @include        http://www.okcupid.com/quickmatch*
// @include        http://okcupid.com/quickmatch*
// @description    Adds names to QuickMatches on OkCupid.
// @version        1.0
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// ==/UserScript==
// Comments can be mailed to "Eckankar -at- gmail -dot- com"

$(function () {
    function addProfileLink() {
        if (! $('span.aso .profile_link').length > 0) {
            var username = Quickmatch.stack[0].sn;
            console.log(username);
            $('span.aso').prepend('<a href="http://okcupid.com/profile/' + username + '" class="profile_link">' + username + '</a> / ');
        }
    }

    var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
    var config = { childList: true, characterData: false, attributes: false, subtree: true };
    var observer = new MutationObserver( function (mutations) {
        addProfileLink();
    });

    $('#left #info_blocks').each( function () { observer.observe(this, config); } );

    addProfileLink();
});