PICheat

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

目前為 2025-03-10 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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';
        });
    }
})();