New Userscript

编程猫小功能优化

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

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      1.1.45.14
// @description  编程猫小功能优化
// @author       You
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/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 = "<strong>精选</strong>";
    lable.appendChild(newLable);
}
长期地址
遇到问题?请前往 GitHub 提 Issues。