Update sample script for Greasemonkey to test multiple links

This commit is contained in:
Piro / YUKI Hiroshi 2013-07-03 00:10:21 +09:00
parent c03ad9eaff
commit 26aa32b622

View File

@ -1,9 +1,43 @@
// ==UserScript== // ==UserScript==
// @name Google First Result in New Tab // @name test
// @namespace google_firstresult.user.js // @namespace google_GM_openInTab.user.js
// @description Open a new tab for the first search result of Google. // @include http*://www.google.*/search?q=*
// @include http*://www.google.*/search?q=* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// // @run-at document-idle
// see: https://github.com/piroor/treestyletab/issues/517
// ==/UserScript== // ==/UserScript==
GM_openInTab(document.querySelector('h3 a').href); function init()
{
$("div#res.med").prepend('<div><img id="use_GM_openInTab" src="http://i.imgur.com/cQkJVZY.png" title="Open All Links">Use GM_openInTab<br/><br/><br/></div>');
$('#use_GM_openInTab').click(function()
{
useGMopenIn();
});
$("div#res.med").prepend('<div><img id="use_windowOpen" src="http://i.imgur.com/cQkJVZY.png" title="Open All Links">Use window.open<br/></div>');
$('#use_windowOpen').click(function()
{
useWinOpen();
});
}
function useGMopenIn()
{
$('.r a').each(function (i, e)
{
var linkURI = $(e).attr('href');
GM_openInTab(linkURI, true);
}); return false;
}
function useWinOpen()
{
$('.r a').each(function (i, e)
{
var linkURI = $(e).attr('href');
window.open(linkURI, "_blank");
}); return false;
}
init();