// ==UserScript== // @name Google to YouTube Search // @namespace https://greasyfork.org/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 https://greasyfork.org/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 // @downloadURL none // ==/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')) $('
Github
').addClass('zItAnd FOU1zf').insertAfter("#cnt > div:nth-child(8) > div > div.aAbqZ > div > div.TrmO7").last(); if (cfg.get('Reddit')) $('
Reddit
').addClass('zItAnd FOU1zf').insertAfter("#cnt > div:nth-child(8) > div > div.aAbqZ > div > div.TrmO7").last(); if (cfg.get('YouTube')) $('
YouTube
').addClass('zItAnd FOU1zf').insertAfter("#cnt > div:nth-child(8) > div > div.aAbqZ > div > div.TrmO7").last(); });