copy_jianshu_to_csdn_and_segmentfault

将景昱OA头像换掉

2022/03/27のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         copy_jianshu_to_csdn_and_segmentfault
// @namespace    https://github.com/techstay/myscripts
// @version      0.1
// @description  将景昱OA头像换掉
// @author       凯文007
// @include      *
// @grant        none
// ==/UserScript==
(function () {
    'use strict';
    var memberImageUrl= $('#memberImageUrl');
    if (memberImageUrl.length==1){
        $(memberImageUrl).html('<img id="memberImageUrl" src="https://q4.qlogo.cn/g?b=qq&[email protected]&s=3?d=retro" style="">');
    }
})();