煎鱼博客自动显示全文

Set height to 999999px for element with ID "articles"

// ==UserScript==
// @name         煎鱼博客自动显示全文
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Set height to 999999px for element with ID "articles"
// @author       Your Name
// @match        https://eddycjy.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 获取ID为article的元素
    var element = document.getElementById('articles');

    // 如果元素存在,修改它的样式
    if (element) {
        element.style.position = 'relative';
        element.style.height = '100%';
        element.style.overflow = 'hidden';
    }

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址