虫部落论坛背景去除

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');
    }
})();