Greasy Fork is available in English.
Use your Google Search terms to search YouTube by clicking a new YouTube link added to your Google Search page.
当前为
// ==UserScript==
// @name Google to YouTube Search
// @namespace http://greasyfork.icu/en/users/10118-drhouse
// @version 4.0
// @description Use your Google Search terms to search YouTube by clicking a new YouTube link added to your Google Search page.
// @run-at document-start
// @include https://www.google.*/search*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @author drhouse
// @license CC-BY-NC-SA-4.0
// @icon https://www.google.com/s2/favicons?domain=google.com
// ==/UserScript==
$(document).ready(function () {
var gquery = $("textarea").text()
$('#hdtb-tls').css('margin-right','0px');
$('<div class="hdtb-mitem hdtb-imb" id="above"><a class="q qs" href="https://www.youtube.com/results?search_query='+encodeURIComponent(gquery)+'">YouTube</a></div>').addClass('zItAnd FOU1zf').insertAfter("#cnt > div:nth-child(8) > div > div.aAbqZ > div > div.TrmO7").last();
});