New script duolingo.com

2/1/2025, 6:00:23 PM

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

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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        New script duolingo.com
// @namespace   Violentmonkey Scripts
// @match       https://www.duolingo.com/learn*
// @grant       none
// @version     1.0
// @author      -
// @description 2/1/2025, 6:00:23 PM
// ==/UserScript==
(function() {
    // Create a container div
    let container = document.createElement("div");
    container.style.position = "fixed";
    container.style.bottom = "20px";
    container.style.right = "20px";
    container.style.background = "white";
    container.style.padding = "10px";
    container.style.border = "2px solid black";
    container.style.zIndex = "9999";
    container.style.borderRadius = "10px";

    // Function to create buttons
    function createButton(amount) {
        let button = document.createElement("button");
        button.innerText = amount + " XP";
        button.style.margin = "5px";
        button.style.padding = "10px";
        button.style.cursor = "pointer";
        button.style.fontSize = "16px";
        button.onclick = function() {
            alert("Added " + amount + " XP! (Simulation)");
            // In reality, Duolingo does not allow direct XP modification.
        };
        container.appendChild(button);
    }

    // Create buttons for XP options
    createButton(1000);
    createButton(10000);
    createButton(100000);

    // Add container to the page
    document.body.appendChild(container);
})();