解除openwrite阅读更多

解除openwrite阅读更多!!

// ==UserScript==
// @name         解除openwrite阅读更多
// @namespace    https://jisuye.com/
// @version      0.1
// @description  解除openwrite阅读更多!!
// @author       ixx
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if(document.getElementById("read-more-wrap")){
        document.getElementById("read-more-wrap").remove();
        document.getElementById("content").style.height=''
    }
})();