ClicknUpload-captcha

Solve ClicknUpload/ClickNDownload Captchas

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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.

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

"use strict";
// ==UserScript==
// @name         ClicknUpload-captcha
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  Solve ClicknUpload/ClickNDownload Captchas
// @author       You
// @match        https://clickndownload.space/*
// @match        https://clickndownload.site/*
// @match        https://clickndownload.link/*
// @match        https://clickndownload.name/*
// @match        https://clickndownload*/*
// @match        https://clickndownload.*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=clickndownload.space
// @license      MIT
// @grant        none
// ==/UserScript==

const captcha = document.querySelector("#commonId > div > table > tbody > tr > td > center > table > tbody > tr:nth-child(2) > td:nth-child(1) > div");
if (captcha !== null) {
    const children = Array.from(captcha.children);
    // sort chilren based on their left padding
    const childrenSorted = children.sort((a, b) => {
        const aPadding = parseInt(a.style.paddingLeft);
        const bPadding = parseInt(b.style.paddingLeft);
        return aPadding - bPadding;
    });
    // get the text of the children
    const result = childrenSorted.map(c => c.textContent).join("");
    const input = document.querySelector("#commonId > div > table > tbody > tr > td > center > table > tbody > tr:nth-child(2) > td:nth-child(2) > input");
    if (input !== null) {
        input.value = result;
    }
}