Wikipedia rearrange other languages

Rearranges the "other languages" section of Wikipedia

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           Wikipedia rearrange other languages
// @namespace      none
// @include        http://*.wikipedia.org/wiki/*
// @include        https://*.wikipedia.org/wiki/*
// @description    Rearranges the "other languages" section of Wikipedia
// @version        1.1
// ==/UserScript==

// set your languages here
var myLangs = ["en", "ru", "uk"];
// setting false will leave other languages in the list
var removeOthers = true;

var plang = window.document.querySelector("div#p-lang");
if (plang == null) return;
var langs = plang.querySelectorAll("div > ul > li");
var first = langs[0];
var ul = first.parentNode;

var found = [];
for (var i = 0; i < langs.length; i++) {
    var lncn = langs[i].className;
    var l1 = lncn.replace(/^.*interwiki-(\S+).*$/, "$1");

    var ln = myLangs.indexOf(l1);
    if (ln > -1) {
        found[ln] = langs[i];
    }
}

var foundcount = 0;
for (var i = found.length - 1; i >= 0; i--){
    if (found[i]) {
        ul.insertBefore(found[i], first);
        first = found[i];
        foundcount++;
    }
}

if (removeOthers) {
    if (foundcount == 0) { 
        // remove "other languages" menu if empty
        plang.parentNode.removeChild(plang);
    } else {
        while(ul.children.length > foundcount) {
            ul.removeChild(ul.children[foundcount]);
        }
    }
}