您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript== // @name elecfans 电子发烧网 阅读全文 // @namespace http://tampermonkey.net/ // @version 0.12 // @description try to take over the world! // @author 萱萱的饭 // @match http://www.elecfans.com/* // @grant none // ==/UserScript== (function() { 'use strict'; $(document).ready(function(){ $('.article-content').css('height','100%'); $.when($.ajax()).then(function(){ $('div.simditor-body').css('height','100%'); $('.seeHide').remove(); // 结束 }) $('.seeHide').remove(); $('.sub-adbt').remove(); $('html body.article-page div#header div.advertising.clearfix').remove(); $('a.page-next').each(function(i){if($(this).text()=='全文'){ $(this)[0].click(); }}); }); // Your code here... })();