Google to YouTube Search

Use your Google Search terms to search YouTube by clicking a new YouTube link added to your Google Search page.

目前为 2016-06-25 提交的版本,查看 最新版本

// ==UserScript==
// @name               Google to YouTube Search
// @namespace          https://gf.qytechs.cn/en/users/10118-drhouse
// @version            1.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
// @icon               https://www.google.ca/images/google_favicon_128.png
// ==/UserScript==

$(document).ready(function () {
	var gquery = $('#lst-ib').val();
	$('#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>').insertAfter("#hdtb-tls");
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址