您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Ersetzt das Google Logo und die Doodles durch das 5. Google Logo (2010-2013)!
// ==UserScript== // @version 1.0 // @name Google Logo 5 (2010-2013) | Keine Doodles! // @name:en Google Logo 5 (2010-2013) | No Doodles! // @namespace https://www.youtube.com/user/InvisibleQuantum/ // @description Ersetzt das Google Logo und die Doodles durch das 5. Google Logo (2010-2013)! // @description:en Replace the Google logo and Doodles with the 5th Google logo (2010-2013)! // @icon http://www.google.com/favicon.ico // @match http*://*.google.*/* // @include http*://*.google.*/* // @homepageURL https://www.youtube.com/user/InvisibleQuantum/ // @supportURL https://www.youtube.com/user/InvisibleQuantum/discussion // @contributionURL https://www.youtube.com/user/InvisibleQuantum?sub_confirmation=1 // @copyright 2017-07-04 // InvisibleQuantum // @license CC BY-SA // @license https://creativecommons.org/licenses/by-sa/4.0 // ==/UserScript== var loadingInstant = false; var instantInterval = null; function changeLogo() { var GoogleLogo = document.getElementById("lga"); var searchLogo = document.getElementById("gbqlw"); if (loadingInstant) { if (document.getElementById("sfcnt") == null) { return; } clearInterval(instantInterval); loadingInstant = false; } if (GoogleLogo != null) { GoogleLogo.innerHTML = '<img id="hplogo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Googlelogo.png/800px-Googlelogo.png" style="width:320px;height:110px;margin-top:95px;margin-left:-5px" alt="" />'; } } window.addEventListener("hashchange", changeLogo, false); if (window.location.hash != "") { loadingInstant = true; instantInterval = setInterval(changeLogo, 100); } changeLogo();