Greasy Fork is available in English.

解除 SegmentFault.com 文章需登录后复制

我只是想看看,没想要注册个账号

// ==UserScript==
// @name         解除 SegmentFault.com 文章需登录后复制
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  我只是想看看,没想要注册个账号
// @author       You
// @match        https://segmentfault.com/a/*
// @match        https://segmentfault.com/q/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if(!$('#SFUserId').length){
        $('head').append('<meta name="userId" value="233" id="SFUserId">')
    }
})();