Skip to content

Instantly share code, notes, and snippets.

@mutoo
Last active December 11, 2019 12:29
Show Gist options
  • Save mutoo/fe7e1c4a745330bfca1bd25ff2466319 to your computer and use it in GitHub Desktop.
Save mutoo/fe7e1c4a745330bfca1bd25ff2466319 to your computer and use it in GitHub Desktop.
test composing text on wechat reading page.
Array.prototype.slice.call(document.querySelectorAll('span[data-wr-id]')).sort((a,b)=>{
if (a.offsetTop != b.offsetTop) {
return a.offsetTop - b.offsetTop
} else {
return a.offsetLeft - b.offsetLeft;
}
}
).map((s)=>s.innerText).join('');
// test on this page
// https://weread.qq.com/web/reader/22f32aa05a9bc16b3aacc22k9873225014e21ff82c0cf73
/* output
"刘慈欣给电子书读者的寄语读者朋友们大家好!物理学中的三体问题看似简单,实则极其复杂,且至今无解,正是对这样一个基础问题的想象,产生了《三体》系列这三部小说。《三体》表达了对广漠而寂静的宇宙的敬畏,和对宇宙中可能存在的智慧他者的想象。也许,对这两方面的想象和思考触及了我们精神世界中最深层和最本质的部分,因而这三部小说才能被这么多的人阅读,产生了这么多的共鸣和理解。正像看似简单的三体问题仍然无解,在万分复杂的大自然中我们也无法预测未来,但科幻小说至少能为我们描述出许多种未来可能的图景,让我们在走向未来的路程中拥有更广阔的视野和更丰富的思想。在《三体》电子书与读者见面之际,再次感谢广大读者的关注和支持,谢谢大家!刘慈欣2018.12.1"
*/
@mutoo
Copy link
Author

mutoo commented Dec 11, 2019

Wechat reading has changed their way to render the content, via Canvas, but it's still exploitable. The POC is at this gist:
https://gist.github.com/mutoo/e862d189dc3ca9a8c284adffd5b154a8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment