您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
简化版本阅读模式
// ==UserScript== // @name info纯净阅读 // @namespace http://jianpage.com/ // @version 0.3 // @description 简化版本阅读模式 // @author ixx // @match *://www.infoq.cn/article/* // @match *://www.infoq.cn/news/* // @icon https://www.google.com/s2/favicons?domain=infoq.cn // @require https://code.jquery.com/jquery-1.12.4.min.js // @grant none // ==/UserScript== (function() { var sh,sh2; $(document).ready(function(){ sh=setInterval(show,500); }) function show(){ if($(".article-main").html()){ $(".article-main").css("background", "#e5f3ed"); $(".inner-content").css("background", "#e5f3ed"); $(".content-main").css("width","100%"); $(".article-main").css("width","100%"); $(".header").remove(); $(".operation-bar").remove(); $(".inner-content").css("padding-top","0") $(".article-aside").remove(); $(".footer").remove(); clearInterval(sh); } } })();