2.掘金文章自動(dòng)顯示全文腳本
// ==UserScript==
// @name 掘金文章自動(dòng)顯示全文
// @namespace http://tampermonkey.net/
// @version 0.1.1
// @description 不用登錄自動(dòng)顯示掘金博客全文
// @author Lynxz
// @match https://juejin.im/post/*
// @match https://juejin.im/entry/*
// @require http://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 隱藏 "顯示全文" 按鈕
$('.show-full').remove();
$('.show-full-block').remove();
// 隱藏右側(cè)邊欄
// entry 和 post 網(wǎng)址的側(cè)邊欄名稱(chēng)還不太一樣
$('.entry-public-aside').remove();
$('div.entry-public-main.shadow').css('max-width','100%');
$('.container .main-container').css('max-width','100%');
$('.columen-view-aside').remove();
$('.columen-view-main').css('max-width','100%');
$('.container .entry-view').css('max-width','100%');
$('.container .bottom-container').css('max-width','100%');
// 顯示全文,并取消最大高度限制
let ct = $('div.post-content-container.hidden');
ct.css('max-height','');
ct.removeClass('hidden');
})();
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者