ZLOJ圆角卡片

将ZLOJ卡片设置为圆角。

// ==UserScript==
// @name         ZLOJ圆角卡片
// @namespace    https://greasyfork.org/zh-CN/users/921602
// @version      1.0
// @description  将ZLOJ卡片设置为圆角。
// @author       东北虎
// @match        *://220.180.209.150:30000/*
// @grant        none
// @license MIT
// ==/UserScript==

const a = document.createElement('style');
a.innerHTML = `.section{border-radius:10px}`;
document.head.append(a);