GM_html2canvas

由于原版的html2canvas在对跨域图片获取上总是失败的问题,将跨域改为通过GM_xmlhttpRequest获取

As of 2022-12-15. See the latest version.

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/456607/1128500/GM_html2canvas.js

Author
WhiteSevs
Version
0.0.1.20221215064150
Created
2022-12-15
Updated
2022-12-15
Size
413 KB
License
N/A

将跨域改为通过GM_xmlhttpRequest获取

版本v1.4.1

# 我的设置如下
let options = {
    allowTaint: true,
    logging: true,
    useCORS: true,

}
html2canvas(document.documentElement, options ).then( canvas =>{
  var base64Image = canvas.toDataURL("image/png");

})