UnDuckButton

Buttons that redirect DuckDuckGo searches to other search engines

Versione datata 01/02/2021. Vedi la nuova versione l'ultima versione.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo 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        UnDuckButton
// @namespace   Violentmonkey Scripts
// @match       https://duckduckgo.com/*
// @grant       none
// @version     0.2.1
// @author      noarch
// @description Buttons that redirect DuckDuckGo searches to other search engines
// @license     WTFPL

// ==/UserScript==


// Searx instances from https://searx.neocities.org/nojs.html
// Updated 2021-01-15
var searxes = [
    "https://searx.ir/?q=",
    "https://search.stinpriza.org/?q=",
    "https://search.privacytools.io/searx/?q=",
    "https://search.azkware.net/?q=",
    "https://searx.openpandora.org/?q=",
    "https://trovu.komun.org/?q=",
    "https://searx.nakhan.net/?q=",
    "https://searx.nixnet.services/?q=",
    "https://searx.libmail.eu/?q=",
    "https://searx.elukerio.org/?q=",
    "https://searx.info/?q=",
    "https://searx.foo.li/?q="
];
var randomSearx = searxes[Math.floor(Math.random() * searxes.length)];

// Add more search engines here
var searchEngines = {
    //"Bing": "https://www.bing.com/search?q=", // Bing sucks, disabled by default
    "Google": "https://www.google.com/search?q=",
    "Random Searx": randomSearx,
  	"Startpage": "https://startpage.com/sp/search?query="
};

function getSearchQuery() {
    var input = document.getElementById("search_form_input").value;
    var inputEncoded = encodeURIComponent(input);

    return inputEncoded;
}

function addButton(text, href) {
    var btn = document.createElement("button");
    btn.innerHTML = text;
    btn.onclick = function() {
		window.location = href;
    };

    return btn;
}

function main() {
    // Create styles for the <div> containing the buttons
    var styles = ".redirectors {display: block; margin: 60px auto auto auto;  right: 4px; position: absolute; bottom: 0; top: 0;}";
    var styleSheet = document.createElement("style");
    styleSheet.type = "text/css";
    styleSheet.innerText = styles;

  	searchQuery = getSearchQuery(); // Failing here (if not on a result page) is fine, and intended

    var div = document.createElement("div");
    div.classList.add("redirectors");

    for (var searchEngine in searchEngines) {
        href = searchEngines[searchEngine] + searchQuery;
       div.appendChild(addButton(searchEngine, href));
    }

    document.head.appendChild(styleSheet);
    document.getElementById("header_wrapper").appendChild(div);
}

main();