replacegmaillogohtml

replace the google image with another one in gmail in the html-only version

  1. // ==UserScript==
  2. // @name replacegmaillogohtml
  3. // @namespace gmailhtml
  4. // @description replace the google image with another one in gmail in the html-only version
  5. // @include https://mail.google.com/mail/u/0/h/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. var url="http://www.phdcomics.com/comics/archive/phd051208s.gif";
  10. var table=document.children[0].children[1].children[14];
  11. var link=table.children[0].children[0].children[0].children[0].children[0];
  12. var image= link.children[0];
  13. image.src=url;
  14. image.height=120;
  15. image.width=210;

QingJ © 2025

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