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. Also added Reddit and Github search options.
当前为
// ==UserScript==
// @name Google to YouTube Search
// @namespace http://greasyfork.icu/en/users/10118-drhouse
// @version 5.0
// @description Use your Google Search terms to search YouTube by clicking a new YouTube link added to your Google Search page. Also added Reddit and Github search options.
// @run-at document-start
// @include https://www.google.*/search*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @require http://greasyfork.icu/scripts/439099-monkeyconfig-modern-reloaded/code/MonkeyConfig%20Modern%20Reloaded.js?version=1012538
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_addStyle
// @grant GM_registerMenuCommand
// @author drhouse
// @license CC-BY-NC-SA-4.0
// @icon https://www.google.com/s2/favicons?domain=google.com
// ==/UserScript==
/* global jQuery, MonkeyConfig, $ */
$(document).ready(function () {
var cfg = new MonkeyConfig({
title: 'Configure',
menuCommand: true,
params: {
'YouTube': {
type: 'checkbox',
default: true
},
'Reddit': {
type: 'checkbox',
default: true
},
'Github': {
type: 'checkbox',
default: true
},
},
})
var gquery = $("textarea").text()
$('#hdtb-tls').css('margin-right','0px');
if (cfg.get('Github'))
$('<div class="hdtb-mitem hdtb-imb" id="above"><a class="q qs" href="https://github.com/search?q='+encodeURIComponent(gquery)+'&type=repositories">Github</a></div>').addClass('zItAnd FOU1zf').insertAfter("#cnt > div:nth-child(8) > div > div.aAbqZ > div > div.TrmO7").last();
if (cfg.get('Reddit'))
$('<div class="hdtb-mitem hdtb-imb" id="above"><a class="q qs" href="https://www.reddit.com/search/?q='+encodeURIComponent(gquery)+'">Reddit</a></div>').addClass('zItAnd FOU1zf').insertAfter("#cnt > div:nth-child(8) > div > div.aAbqZ > div > div.TrmO7").last();
if (cfg.get('YouTube'))
$('<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();
});