Empornium: Name to tag search

Takes marked text and searches empornium

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         Empornium: Name to tag search
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Takes marked text and searches empornium
// @author       Your Name
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=empornium.is
// @grant        GM_registerMenuCommand
// @grant        GM_openInTab
// @grant        GM_setClipboard
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to process text
    function processSelectedText() {
        const selectedText = window.getSelection().toString();
        if (!selectedText) {
            alert("Please select some text before using this command.");
            return null;
        }
        let processedText = selectedText.trim().toLowerCase().replace(/\s+/g, '.');
        return encodeURIComponent(processedText);
    }

    // Navigate in current tab
    function navigateInCurrentTab() {
        const processedText = processSelectedText();
        if (processedText) {
            window.location.href = `https://www.empornium.is/torrents.php?order_by=seeders&order_way=desc&searchtext=&action=advanced&title=&sizeall=&sizetype=gb&sizerange=0.01&filelist=&taglist=${processedText}&autocomplete_toggle=on`;
        }
    }

    // Open in new tab
    function openInNewTab() {
        const processedText = processSelectedText();
        if (processedText) {
            GM_openInTab(`https://www.empornium.is/torrents.php?order_by=seeders&order_way=desc&searchtext=&action=advanced&title=&sizeall=&sizetype=gb&sizerange=0.01&filelist=&taglist=${processedText}&autocomplete_toggle=on`, true);
        }
    }

    // Register menu commands
    GM_registerMenuCommand("Emp (Ctrl+Alt+C)", navigateInCurrentTab, 'c');
    GM_registerMenuCommand("Emp in New Tab (Ctrl+Alt+N)", openInNewTab, 'n');

    // Add keyboard shortcuts
    document.addEventListener('keydown', function(e) {
        if (e.ctrlKey && e.altKey && e.code === 'KeyN') {
            e.preventDefault();
            openInNewTab();
        } else if (e.ctrlKey && e.altKey && e.code === 'KeyC') {
            e.preventDefault();
            navigateInCurrentTab();
        }
    });
})();