NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name duckduckgo Google button // @namespace middlerob.com // @description Adds a Google button to duckduckgo // @include https://duckduckgo.com/?q=* // @version 1 // @grant none // ==/UserScript== var li = document.createElement('li') li.className = 'zcm__item' var a = document.createElement('a') a.className = 'zcm__link' a.innerHTML = 'Google' a.href = 'https://google.com/' li.appendChild(a) function update() { a.href = 'https://google.com/search?q=' + encodeURIComponent(document.querySelector('#search_form_input').value) } a.addEventListener('mousedown', update, false) a.addEventListener('keydown', update, false) document.querySelector('#duckbar_static').appendChild(li)