Greasy Fork is available in English.

BetterRecruit

makes recruiting faster

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         BetterRecruit
// @namespace    coral.donkey
// @version      1.1
// @description  makes recruiting faster
// @author       CoralDonkey
// @match        https://www.torn.com/page.php?sid=UserList*
// @license      MIT
// @grant        none
// ==/UserScript==

(function(){

'use strict';

//gets userlist page
const userlist = document.querySelector(".user-info-list-wrap");

//oberves changes to userlist
const observer = new MutationObserver(() => {
    console.log("observed")
    check();
    addbutton();
});
observer.observe(userlist, { childList: true, subtree: true });


//checks for not top npc jobs
function check(){
for (const child of userlist.children) {
//  checks for npc job icon
    const hasicon = child.querySelectorAll("[id*='icon23'], [id*='icon25'], [id*='icon26']");
    if (hasicon.length > 0) {
//     checks if theyre in the top position
       const topjob = child.querySelectorAll("[title*='Brain surgeon'], [title='Principal'], [title*='Federal Judge']");
        if (topjob.length === 0) {
                child.style.display = "none";
}}}};


//adds button to every child
function addbutton() {
//  prevent feedback loop
    observer.disconnect();
    for (const child of userlist.children) {
//      navigated to the icons
        const icontray = child.querySelector("[class='big svg']");
        if (icontray) {
            icontray.style.position = "relative";
//          checks if button already exists
            const hasbutton = icontray.querySelector(".button");
            if (!hasbutton) {
                console.log(hasbutton);
//              button characteristics
                const button = document.createElement("button");
                button.innerText = "Chat";
                button.style.display = "inline-block";
                button.style.position = "absolute";
                button.style.top = "-07%";
                button.style.right = "30%";
                button.className = "button";
                icontray.appendChild(button);

//              on click, open chat
                button.addEventListener("click", function() {
                    openchat(child)});
}}}
    observer.observe(userlist, { childList: true, subtree: true });}

//gets users id and opens chat with them
function openchat(user) {
    const userclass = user.className;
    const idmatch = /user(\d+)/.exec(userclass);
    const id = parseInt(idmatch[1]);
    if (id) {
//      opens chat with user
        chat.r(id);

}}


check();
addbutton();
})()