命令行执行下面的代码。
document.querySelector('#page-content').setAttribute('contenteditable',true);
然后你就可以选中需要的东西复制了。复制后可以去公众号编辑器里复制进去,格式一摸一样。
效果图:
油猴脚本
如果你有油猴脚本, 将下面的代码加入脚本,就可以让公众号文章都可以复制了。很方便。
// ==UserScript==
// @name 让公众号文章可复制
// @namespace http://tampermonkey.net/
// @version 2024-08-23
// @description try to take over the world!
// @author cc
// @match https://mp.weixin.qq.com/s/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(()=> {
document.querySelector('#page-content').setAttribute('contenteditable',true);
},5000)
})();