Created
November 22, 2010 13:02
-
-
Save dolpen/709945 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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'));});})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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