Greasy Fork is available in English.
点击标题的展开全文就可全文阅读
// ==UserScript==
// @name 电子发烧友不登录浏览更多
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 点击标题的展开全文就可全文阅读
// @author YQMCU
// @match http://www.elecfans.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('.article-title:first').append($('<button>').text('展开全文').on('click',function(){
$('.simditor-body').css('height','100%');
}));
// Your code here...
})();