虫洞栈去除验证码

虫洞栈(bugstack.cn)免微信关注公众号

// ==UserScript==
// @name         虫洞栈去除验证码
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  虫洞栈(bugstack.cn)免微信关注公众号
// @author       li
// @match        https://bugstack.cn/*
// @run-at       document-start
// @grant        none
// @license Apache 2.0


// ==/UserScript==

(function() {
    'use strict';
    document.head.innerHTML+=`<style>
         #read-more-wrap
         {display: none !important}
         .theme-default-content
         { height:100% !important}
    </style>`

})();