Greasy Fork is available in English.

copy_jianshu_to_csdn_and_segmentfault

将景昱OA头像换掉

Versión del día 27/03/2022. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name         copy_jianshu_to_csdn_and_segmentfault
// @namespace    
// @version      0.1
// @description  将景昱OA头像换掉
// @author       You
// @include      *
// @grant        none
// ==/UserScript==
(function () {
    'use strict';
    var lg = $('#personHeadImg > div');
    if(lg.length==1){
        $(lg).html('<img id="memberImageUrl" src="https://q4.qlogo.cn/g?b=qq&[email protected]&s=3?d=retro">');
    }
})();