Greasy Fork is available in English.
Remove class attributes from all elements on https://www.chongbuluo.com/
当前为
// ==UserScript==
// @name 虫部落论坛背景去除
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Remove class attributes from all elements on https://www.chongbuluo.com/
// @author Yunye
// @match https://www.chongbuluo.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var body = document.querySelector('body');
if (body) {
body.removeAttribute('class');
}
})();