change google style

try to take over the world!

  1. // ==UserScript==
  2. // @name change google style
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.20210121
  5. // @description try to take over the world!
  6. // @author x06lan
  7. // @match https://www.google.com/
  8. // @match https://www.google.com.tw/
  9. // @grant GM_xmlhttpRequest
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. //change logo
  15. const logo=document.getElementById('hplogo');
  16. const windowlogo="https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Windows_logo_-_2012_%28dark_blue%29.svg/1200px-Windows_logo_-_2012_%28dark_blue%29.svg.png"
  17.  
  18. logo.src=windowlogo
  19. logo.srcset=windowlogo
  20.  
  21.  
  22. console.log("google to window")
  23.  
  24. //change backeground
  25. let body=document.getElementsByTagName("body")[0];
  26. body.style.background= "#f3f3f3 url('https://imgur.com/ZDGHXQS.png') no-repeat right top";
  27. body.style.backgroundSize="cover";
  28. let foot= document.getElementById("fbar");
  29. foot.style.opacity="0"
  30.  
  31. let text=document.getElementById("SIvCob")
  32. text.style.color="#ffffff"
  33.  
  34.  
  35. })();
  36. // /images/branding/googlelogo/1x/googlelogo_color_272x92dp.png 1x,
  37. // /images/branding/googlelogo/2x/googlelogo_color_272x92dp.png 2x

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址