您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replace the Google Doodle logo with the standard Google logo
// ==UserScript== // @name DoodleReplace // @namespace http://localhost // @description Replace the Google Doodle logo with the standard Google logo // @version 1.0 // @include http://*.google.*/* // @include https://*.google.*/* // @resource logo https://www.google.ca/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png // @grant GM_getResourceURL // ==/UserScript== var hplogo = document.getElementById('hplogo'); hplogo.innerHTML = '<img style="padding-top: 109px;" src="' +GM_getResourceURL("logo") +'">';