Skip to content

Instantly share code, notes, and snippets.

@dolpen
Created November 22, 2010 13:02
Show Gist options
  • Save dolpen/709945 to your computer and use it in GitHub Desktop.
Save dolpen/709945 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name googlecutprev
// @namespace www.dolpen.net
// @include http://www.google.com/search*
// @include http://www.google.co.jp/search*
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js
// ==/UserScript==
(function(){$('div.vsc').each(function(){$(this).parent().empty().append($(this).clone().removeClass('vsc'));});})();
// ==UserScript==
// @name googlecutprev
// @namespace www.dolpen.net
// @include http://www.google.com/search*
// @include http://www.google.co.jp/search*
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js
// ==/UserScript==
(function(){
$('div.vsc').each(function(){
$(this).parent().empty().append($('<div></div>').append($(this).children().clone()));
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment