CSDN实现关闭文章左侧,实现小窗口阅读
// ==UserScript==
// @name CSDN关闭文章左侧_辉
// @version 1.1
// @description CSDN实现关闭文章左侧,实现小窗口阅读
// @author 小白程序猿H
// @match https://blog.csdn.net/*/article/details/*
// @icon https://g.csdnimg.cn/static/logo/favicon32.ico
// @grant none
// @namespace https://greasyfork.org/users/953193
// ==/UserScript==
(function() {
'use strict';
// 获取所有代码块
let main = document.querySelector("main");
main.style.float = 'none'
})();