Created
March 22, 2023 16:00
-
-
Save themactep/0400d6aaf5f3d107cd92030087aee84f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name CSDN tweaker | |
// @namespace http://themactep.com/ | |
// @version 0.1 | |
// @description Show full articles | |
// @author [email protected] | |
// @match https://*.blog.csdn.net/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=csdn.net | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.querySelector('.hide-article-box').style.display = 'none'; | |
document.querySelector('#article_content').style.height = 'auto'; | |
document.querySelector('#article_content').style.overflow = 'auto'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment