将gravatar头像替换为国内镜像链接,加快打开速度
// ==UserScript==
// @name 替换gravatar头像
// @namespace https://wangtwothree.com/
// @version 0.3
// @description 将gravatar头像替换为国内镜像链接,加快打开速度
// @author wangtwothree
// @match *://*/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
window.addEventListener('load', function() {
var imgs = document.getElementsByTagName('img')
for(var i=0;i< imgs.length;i ++ ){
var img = imgs[i]
img.src = img.src.replace(/secure.gravatar.com/, "cravatar.cn")
}
});
})();