您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 https://gf.qytechs.cn/en/users/10118-drhouse // @version 5.1 // @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 // @require https://gf.qytechs.cn/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://www.google.ca/search?q=site%3Agithub.com+'+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.google.ca/search?q=site%3Areddit.com+'+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(); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址