您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
让新浪新闻、腾讯新闻、it1352不需要展开或者下载APP直接看全文,微博长文不需要点击关注即可阅读全文,陆续支持更多网站中...
// ==UserScript== // @name 新浪腾讯新闻查看全文+微博长文不关注看全文 // @version 0.2.6 // @description 让新浪新闻、腾讯新闻、it1352不需要展开或者下载APP直接看全文,微博长文不需要点击关注即可阅读全文,陆续支持更多网站中... // @author CWBeta // @include *zx.sina.cn* // @include *weibo.com/ttarticle* // @include *it1352.com* // @include *xw.qq.com* // @icon https://www.google.com/s2/favicons?domain=sina.cn // @namespace http://greasyfork.icu/users/670174 // @license MIT // ==/UserScript== (function() { 'use strict'; console.log("【新浪查看全文】运行中!") var wasWorking = false; function DisableHiding() { var isWorking = document.getElementById("SinaAutoDisableHiding") != null; if (isWorking) { return; } if( wasWorking && !isWorking) { console.log("【新浪查看全文】检测到对面试图干掉我,但是我预判了对面的预判,又干掉了对面。") } var style = document.createElement("style"); style.type = "text/css"; var cssString = ".arc-body-main,.s_card,.WB_editor_iframe_new,#article_body,.WB_editor_iframe_word {overflow:hidden !important; height:auto !important; max-height:99999999px !important;} #float-btn,.look_more,.look_more_a,.artical_add_box,.arc-body-main-more, #article_body .pictureBottomBtn, .collapseWrapper, #article_body .shareA, #article_body .mask, .landad-inner{display: none !important}" try { style.appendChild(document.createTextNode(cssString)); } catch(ex) { style.styleSheet.cssText = cssString;//针对IE } style.setAttribute("id","SinaAutoDisableHiding"); var head = document.getElementsByTagName("head")[0]; head.appendChild(style); wasWorking = true; } setInterval(DisableHiding,1000); DisableHiding(); })();