replacegmaillogohtml

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

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

QingJ © 2025

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