Greasy Fork is available in English.
免登录,网页端直接看博客文章隐藏详细内容
// ==UserScript==
// @name 网页财新博客-免登录查看全文
// @name:en free-Caixin_Blog
// @namespace http://blog.caixin.com/
// @version 0.0.1
// @description 免登录,网页端直接看博客文章隐藏详细内容
// @description:en free
// @author easilylazy
// @match http*://*.blog.caixin.com/*
// @run-at document-start
// @grant none
// ==/UserScript==
window.onload=function (e) {
if(document.querySelector('#the_content')){
document.querySelector('#the_content').style.overflow="scroll";}
var element = document.getElementById("loginWall");
element.parentNode.removeChild(element);
}