微信公众号文章页面样式重置

Desktop: Browser → DevTools → Elements → Console (Bottom), run:

// 不用按着 Shift 键滚动鼠标了
document.getElementsByClassName("rich_media_area_primary_inner")[0].style="max-width:1280px";

// 第三方编辑器当真是垃圾样式制造机…

// 垃圾样式多
document.querySelectorAll("pre").forEach(e => {
  e.removeAttribute("style");
  e.style="padding:1rem;background-color:#f7f7f7;font-family:menlo"
});
// 行长三千尺
document.querySelectorAll("code span").forEach(e => e.style.whiteSpace="normal");
posted @ 2022-04-29 01:45  o8o  阅读(120)  评论(0)    收藏  举报