Sorry, Google!

Take your search elsewhere on the "/sorry" captcha pages Google serves when you use a VPN. Hold CTRL while clicking to open in a new tab.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Sorry, Google!
// @namespace    https://github.com/appel/userscripts
// @version      0.4.1
// @description  Take your search elsewhere on the "/sorry" captcha pages Google serves when you use a VPN. Hold CTRL while clicking to open in a new tab.
// @author       Ap
// @match        *://www.google.com/sorry/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    const extractQuery = (url) => {
        const match = url.match(/q%3D(.*?)%26|q%3D(.*?)(?=&|$)/);
        if (match) {
            const queryComponent = match[1] || match[2];
            return decodeURIComponent(queryComponent.replace(/\+/g, ' '));
        }
        return '';
    };

    const searchButton = (query, baseUrl, text) => {
        const url = `${baseUrl}${query}`;
        const link = document.createElement('a');
        link.href = url;
        link.target = '_parent';
        link.title = `Take this search to ${text}`;
        link.textContent = text;
        link.style = `display: inline-block; margin-top: 2rem; margin-right: .5rem; padding: 0.35rem .75rem;
                      background-color: #302e2d; color: #ffffff; border-radius: 5px;
                      text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
                      segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
                      font-size: 17px;`;

        // Hold ctrl while clicking to open in a new tab
        link.addEventListener('click', (event) => {
            if (event.ctrlKey) {
                link.target = '_blank'; // Opens in a new tab
            } else {
                link.target = '_parent'; // Opens in the same tab or window
            }
        });

        document.body.appendChild(link);
    };

    if (window.location.href.startsWith('https://www.google.com/sorry')) {
        const query = extractQuery(window.location.href);
        searchButton(query, 'https://duckduckgo.com?q=', 'DuckDuckGo');
        searchButton(query, 'https://bing.com?q=', 'Bing');
        searchButton(query, 'https://search.brave.com/search?q=', 'Brave');
        searchButton(query, 'https://www.startpage.com/do/search?query=', 'Startpage');
    }
})();