Disable Weibo Article FollowMask

用来解除部分微博文章要求关注作者才能阅读全文的限制

目前為 2020-01-27 提交的版本,檢視 最新版本

// ==UserScript==
// @name			Disable Weibo Article FollowMask
// @name:zh-CN			取消微博文章关注阅读全文
// @description                 用来解除部分微博文章要求关注作者才能阅读全文的限制
// @version	 		1.03
// @author			GensouSakuya
// @include			*weibo.com/ttarticle/*
// @require         https://code.jquery.com/jquery-3.1.1.min.js
// @namespace https://gf.qytechs.cn/users/194737
// ==/UserScript==
$('.W_gotop.S_ficon_bg').before('<a href="javascript:" id="gogoda" data-tip="text=阅读全文&amp;showWithAni=fadeInRight&amp;hideWithAni=fadeOutLeft&amp;pos=left-middle" class="W_gotop S_ficon_bg" action-type="data-tip" style="margin-bottom: 167px;position: fixed;top: auto;"><em class="W_ficon ficon_backtop S_bg2_c">🐔</em></a>')
$("#gogoda").click(function(){
    var iframe1 = $('.WB_editor_iframe_new')
    if(iframe1 != null && iframe1[0]!= null)
    {
        iframe1[0].style['height'] = 'auto';
    }
    var iframe2 = $('.WB_editor_iframe_word')
    if(iframe2 != null && iframe2[0]!= null)
    {
        iframe2[0].style['height'] = 'auto';
    }
    $('.btn_line.W_tc.W_f14').remove()
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址