PICheat

Cheat that shows the test answers on pasja-informatyki.pl

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         PICheat
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Cheat that shows the test answers on pasja-informatyki.pl
// @author       nyxiereal
// @match        https://pasja-informatyki.pl/*/test/*
// @grant        none
// @license GPL-3.0
// ==/UserScript==

(function() {
    'use strict';

    // Extract the ans array from the HTML content
    const ansLine = document.body.innerHTML.match(/ans\[\d+\] = "[a-z]";/g);
    if (ansLine) {
        const ansArray = ansLine.map(item => item.match(/"([a-z])"/)[1]);

        // Create a container for the list
        const container = document.createElement('div');
        container.style.position = 'fixed';
        container.style.top = '50px';
        container.style.left = '0';
        container.style.width = '75px';
        container.style.backgroundColor = '#f8f9fa';
        container.style.zIndex = '1000';
        container.style.padding = '10px';
        container.style.boxShadow = '0 2px 4px rgba(0,0,0,0.1)';
        container.style.overflowY = 'auto';
        container.style.maxHeight = '90vh';

        // Create the list
        const list = document.createElement('ol');
        ansArray.forEach((item, index) => {
            const listItem = document.createElement('li');
            listItem.textContent = `${item}`;
            list.appendChild(listItem);
        });

        // Create the hide button
        const hideButton = document.createElement('button');
        hideButton.textContent = 'Hide';
        hideButton.style.padding = '5px 10px';
        hideButton.style.backgroundColor = '#007bff';
        hideButton.style.color = 'white';
        hideButton.style.border = 'none';
        hideButton.style.borderRadius = '3px';
        hideButton.style.cursor = 'pointer';
        hideButton.style.marginTop = '10px';

        // Append the list and button to the container
        container.appendChild(list);
        container.appendChild(hideButton);

        // Append the container to the body
        document.body.appendChild(container);

        // Add event listener to the hide button
        hideButton.addEventListener('click', () => {
            container.style.display = 'none';
        });
    }
})();