Greasy Fork is available in English.
Says it right in the title
当前为
// ==UserScript==
// @name KBin.social remove custom styles
// @namespace https://kbin.social/
// @version 0.2
// @description Says it right in the title
// @author H2SO4
// @match https://kbin.social/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
let stylesheet = document.getElementsByTagName("head")[0].getElementsByTagName("style");
stylesheet[0].remove();
})();