编程猫小功能优化

bcm细微功能变化,例如精选显示等等

As of 2023-06-03. See the latest version.

// ==UserScript==
// @name         编程猫小功能优化
// @namespace    https://shequ.codemao.cn/user/3348695
// @version      1.1.45.17
// @description  bcm细微功能变化,例如精选显示等等
// @author       鱼丶
// @match        *://shequ.codemao.cn/work/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_xmlhttpRequest
// ==/UserScript==

let lable = document.querySelector(".r-work-c-work_interaction--work_interaction_container");
if (lable != null) {
    let newLable = document.createElement("span");
    newLable.className = "r-work-c-work_interaction--label";
    newLable.innerHTML = "点猫精选";
    lable[0].appendChild(newLable);
}
长期地址
遇到问题?请前往 GitHub 提 Issues。