CSDN展开

CSDN不用展开直接查看全文

目前為 2021-06-29 提交的版本,檢視 最新版本

// ==UserScript==
// @name         CSDN展开
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  CSDN不用展开直接查看全文
// @author       Johu
// @match        *://*.csdn.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('article_content').style.overflow = 'scroll'
})();