Yandex to DuckDuckGo

Places a button to search with DuckDuckGo from Yandex search page

当前为 2020-10-13 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name Yandex to DuckDuckGo
// @name:ru Yandex to DuckDuckGo
// @description Places a button to search with DuckDuckGo from Yandex search page
// @description:ru Добавляет кнопку поиска на DuckDuckGo к результатам поиска Яндекса
// @author Autapomorph
// @version 1.0.1
// @run-at document_start
// @match https://yandex.ru/*
// @supportURL https://github.com/Autapomorph/yandex-ddg/issues
// @license MIT
// @namespace https://greasyfork.org/users/689919
// ==/UserScript==

(function yandexDDG() {
  var input = document.querySelector('.input__control');
  var competitorsWrapper = document.querySelector('.competitors .competitors__list');
  var googleLink = competitorsWrapper.querySelector('a[href*="google"]');

  if (!input || !competitorsWrapper || !googleLink) {
    return;
  }

  var searchTerm = input.value;

  var ddgLink = googleLink.cloneNode(true);
  ddgLink.textContent = 'Duck Duck Go';
  ddgLink.setAttribute('href', '//duckduckgo.com/?q=' + searchTerm);

  competitorsWrapper.appendChild(ddgLink);
})();