CSDN展开

CSDN不用展开直接查看全文

Από την 23/08/2021. Δείτε την τελευταία έκδοση.

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

(function() {
    'use strict';
    document.getElementById('article_content').style.height= 'auto'
    document.getElementsByClassName('hide-article-box')[0].style.display = 'none'
    document.getElementsByClassName('toolbar-advert')[0].style.display = 'none'
    document.getElementById('ev_talkbox_wrapper').style.display = 'none'
})();