Catbox.moe to MediaWiki Gallery Converter

Convert Catbox.moe links to MediaWiki gallery format and copy to clipboard

Stan na 30-07-2024. Zobacz najnowsza wersja.

// ==UserScript==
// @name         Catbox.moe to MediaWiki Gallery Converter
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  Convert Catbox.moe links to MediaWiki gallery format and copy to clipboard
// @match        https://catbox.moe/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create the "Save as gallery" button
    const button = document.createElement('button');
    button.textContent = 'Save as gallery';
    button.style.position = 'fixed';
    button.style.top = '10px';
    button.style.right = '10px';
    button.style.zIndex = '9999';

    // Function to copy text to clipboard
    function copyToClipboard(text) {
        const textArea = document.createElement('textarea');
        textArea.value = text;
        document.body.appendChild(textArea);
        textArea.select();
        document.execCommand('copy');
        document.body.removeChild(textArea);
    }

    // Add click event listener to the button
    button.addEventListener('click', function() {
        const regex = /https:\/\/files\.catbox\.moe\/[a-zA-Z0-9]+\.[a-zA-Z]+/g;
        const pageText = document.body.innerText;
        const matches = pageText.match(regex);

        let galleryText = '';

        if (matches) {
            matches.forEach(url => {
                galleryText += `{{Obrazek2|l=${url}}}\n`;
            });
            copyToClipboard(galleryText.trim());
            alert('Gallery format copied to clipboard!');
        } else {
            alert('No valid links found. Please upload images first.');
        }
    });

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