I need to print out an entire text conversation that I had on Messages on my phone to submit it to someone's supervisor. When I try to print it on the website it only gives a screenshot of what I am looking it.
How to print an entire conversation from Google Messages
1.1k Views Asked by mvndaai At
2
There are 2 best solutions below
0

Google messages updated their divs:
(function() {
var originalContents = document.body.innerHTML;
var printReport= document.querySelector("body > mw-app > mw-bootstrap > div > main > mw-main-container > div > mw-conversation-container > div > div > div > mws-messages-list")
document.body.innerHTML = printReport.innerHTML;
document.body.style.display = 'block';
document.body.style.overflow = 'visible';
window.print();
document.body.innerHTML = originalContents;
}())
Thank you AbhiNickz for this answer as a starting point.