
获得徽章 12
- 分享一段代码, 用于修复网页显示异常,dddd
```
// ==UserScript==
// @name I dont need gray
// @namespacetampermonkey.net
// @version 0.1
// @description try to fix the world!
// @author You
// @match *://juejin.cn/*
// @match *://www.jd.com/*
// @match *://www.bilibili.com/*
// @iconwww.google.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
let html = document.getElementsByTagName("html")[0]
html && html.removeAttribute("class")
})();
```展开赞过评论3