Greasy Fork

Greasy Fork is available in English.

自用:代码随想录站点优化

站点优化

目前为 2023-07-28 提交的版本,查看 最新版本

// ==UserScript==
// @name         自用:代码随想录站点优化
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  站点优化
// @author       You
// @match        https://programmercarl.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=programmercarl.com
// @grant        none
//de
// ==/UserScript==


// Get all elements with the class "option-box"
const optionBoxes = document.querySelectorAll('.option-box');

// Loop through the elements and remove them
optionBoxes.forEach((optionBox) => {
    optionBox.remove();
});