// ==UserScript== // @name 将网页转化为阅读模式 // @description 调用简悦(simp.red)接口将网页转化为清爽的阅读模式,去除广告等无关元素。 // @icon https://simpread-1254315611.cos.ap-shanghai.myqcloud.com/logo/logo%40128.png // @namespace https://greasyfork.org/zh-CN/users/393603-tsing // @version 1.0 // @author Tsing // @match *://*/* // @exclude *://www.baidu.com/ // @exclude *://*.baidu.com/s?* // @exclude *://*.so.com/s?* // @exclude *://*.sogou.com/sogou* // @exclude *://www.sogou.com/ // @exclude *://*.bing.com* // @exclude *://*.google.com.* // @exclude *://*.dogedoge.com* // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // @grant none // @downloadURL https://update.greasyfork.icu/scripts/406288/%E5%B0%86%E7%BD%91%E9%A1%B5%E8%BD%AC%E5%8C%96%E4%B8%BA%E9%98%85%E8%AF%BB%E6%A8%A1%E5%BC%8F.user.js // @updateURL https://update.greasyfork.icu/scripts/406288/%E5%B0%86%E7%BD%91%E9%A1%B5%E8%BD%AC%E5%8C%96%E4%B8%BA%E9%98%85%E8%AF%BB%E6%A8%A1%E5%BC%8F.meta.js // ==/UserScript== (function() { /* global $ */ 'use strict'; var CurrentUrl = window.location.href; var NewUrl = "https://simp.red/trans?url=" + decodeURIComponent(CurrentUrl); var button = ''; $("body:first").prepend(button); })();