简阅Markdown导出格式化

91 阅读1分钟
// ==UserScript==
// @name         JianYue
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://36kr.com/p/*
// @icon         https://36kr.com/favicon.ico
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    var styles = `
     .simpread-read-root sr-read {
       padding: 0 !important;
       margin: 0 !important;
     }
     sr-rd-title {
       font-size: 24px !important;
     }
     sr-rd-footer{
       display: none !important;
      }
    `
    GM_addStyle(styles);
    setTimeout(()=>{
       document.querySelectorAll("a").forEach(el=>el.outerHTML=el.innerText)
    },1000)
    // Your code here...
})();