Skip to content

Instantly share code, notes, and snippets.

@NigelThorne
Created November 27, 2013 05:18
Show Gist options
  • Save NigelThorne/7671000 to your computer and use it in GitHub Desktop.
Save NigelThorne/7671000 to your computer and use it in GitHub Desktop.
I like duckduckgo.. but it bothers me that it's above my google results. So.. i moved it I use control freak google chrome plugin to run greasemonkey type scripts.
function move_duckduckgo(){
var node = document.getElementById('ddg_zeroclick');
if(node != null){
document.getElementById('rhs').appendChild(node);
} else {
setTimeout(move_duckduckgo, 10);
}
}
move_duckduckgo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment