slash search bar focus

Focus search bar on pressing SLASH (/) or BACKSLASH (\) on amazon.de, bing.com, userscript.zone, github, aliexpress, hornbach, readly, greasyfork, ebay, temu

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         slash search bar focus
// @namespace    guebosch
// @version      2025-03-06
// @description  Focus search bar on pressing SLASH (/) or BACKSLASH (\) on amazon.de, bing.com, userscript.zone, github, aliexpress, hornbach, readly, greasyfork, ebay, temu
// @author       guebosch
// @match        https://www.bing.com/search*
// @match        https://www.userscript.zone/search*
// @match        https://github.com/*
// @match        https://go.readly.com/*
// @match        https://greasyfork.org/en/scripts*
// @match        https://www.hornbach.at/*
// @match        https://*.aliexpress.com/*
// @match        https://*.temu.com/*
// @match        https://www.amazon.de/*
// @match        https://www.google.com/search?q=*
// @match        https://www.google.com/search?newwindow=*
// @match        https://www.ebay.at/sch/*
// @match        https://www.ebay.de/sch/*
// @match        https://www.reddit.com/*
// @match        https://www.ebay.com/sch/*
// @match        https://piratehaven.xyz/search.php?*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bing.com
// @grant        none
// ==/UserScript==

//debugger;

// Note: google seems to work out of the box. somethimes. Not always on the News Page.

(function() {
    const hostname = window.location.hostname;
    var searchField;
    window.addEventListener("keypress", e => {
        if (['TEXTAREA', 'INPUT'].includes(e.target.nodeName)) return;
        if (e.key !== "/" && e.key !== "\\") return;

        if (['www.bing.com', 'www.hornbach.at'].includes(hostname)) {
            searchField = document.querySelector('textarea[type="search"], input[type="search"], input[name="search"], input[placeholder*="Search"]');
        }
        else if (['www.userscript.zone','piratehaven.xyz'].includes(hostname)) {
            searchField = document.querySelector('#search');
        }
        else if (['github.com'].includes(hostname)) {
            searchField = document.querySelector('#js-issues-search');
        }
        else if (['de.aliexpress.com','en.aliexpress.com','www.aliexpress.com'].includes(hostname)) {
            searchField = document.querySelector('#search-words');
        }
        else if (['www.amazon.de'].includes(hostname)) {
            searchField = document.querySelector('#twotabsearchtextbox');
        }
        else if (['go.readly.com'].includes(hostname)) {
            searchField = document.querySelector('#content-gate-input');
        }
        else if (['greasyfork.org'].includes(hostname)) {
            searchField = document.querySelector('input[type="search"][name="q"]');
        }
        else if (['reddit.com'].includes(hostname)) {
            searchField = document.querySelector('input[type="text"][name="q"]');
        }
        else if (['www.ebay.at','www.ebay.de','www.ebay.com'].includes(hostname)) {
            searchField = document.querySelector('#gh-ac');
        }
        else if (['www.google.com'].includes(hostname)) {
            searchField = document.querySelector('#textarea[name="q"], textarea[id="q"]');
        }
        else if (['www.temu.com'].includes(hostname)) {
            searchField = document.querySelector('input[id="searchInput"]');
        }
        if (!searchField) return;
        window.scrollTo(0, 0);  // Scroll to the top
        searchField.focus();
        // move cursor to the right
        searchField.setSelectionRange(searchField.value.length, searchField.value.length);
        e.preventDefault();
    });
})();