您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
用来解除部分微博文章要求关注作者才能阅读全文的限制
当前为
// ==UserScript== // @name Disabled Weibo Article FollowMask // @name:zh-CN 取消微博文章关注阅读全文 // @description 用来解除部分微博文章要求关注作者才能阅读全文的限制 // @version 1.0 // @author GensouSakuya // @include *weibo.com/ttarticle/* // @require https://code.jquery.com/jquery-3.1.1.min.js // @namespace http://greasyfork.icu/users/194737 // ==/UserScript== $('.W_gotop.S_ficon_bg').before('<a href="javascript:" id="gogoda" data-tip="text=阅读全文&showWithAni=fadeInRight&hideWithAni=fadeOutLeft&pos=left-middle" class="W_gotop S_ficon_bg" action-type="data-tip" style="margin-bottom: 55px;position: fixed;top: auto;"><em class="W_ficon ficon_backtop S_bg2_c">🐔</em></a>') $("#gogoda").click(function(){ $('.WB_editor_iframe')[0].style['height'] = 'auto'; $('.btn_line.W_tc.W_f14').remove() })