Skip to content

Instantly share code, notes, and snippets.

@themactep
Created March 22, 2023 16:00
Show Gist options
  • Save themactep/0400d6aaf5f3d107cd92030087aee84f to your computer and use it in GitHub Desktop.
Save themactep/0400d6aaf5f3d107cd92030087aee84f to your computer and use it in GitHub Desktop.
// ==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