您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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;