Snippet to clean the threader app reader view to print-it easily to PDF
document.querySelector("#readability-page-1 > div > div > div > div:last-child").style.display = "none";
document.querySelector("#readability-page-1 > div > div > div p:last-child").style.display = "none";
document.querySelector("#readability-page-1 > div > div > div ul").style.display = "none";
document.querySelector("#modalsignup").style.display = "none";
document.querySelector("#modalaction").style.display = "none";Method 2 : add the following code in the URL field of a bookmark, and click on it while on threader_app :
javascript:document.querySelector(%22%23readability-page-1%20%3E%20div%20%3E%20div%20%3E%20div%20%3E%20div%3Alast-child%22).style.display%3D%22none%22%3Bdocument.querySelector(%22%23readability-page-1%20%3E%20div%20%3E%20div%20%3E%20div%20p%3Alast-child%22).style.display%3D%22none%22%3Bdocument.querySelector(%22%23readability-page-1%20%3E%20div%20%3E%20div%20%3E%20div%20ul%22).style.display%3D%22none%22%3Bdocument.querySelector(%22%23modalsignup%22).style.display%3D%22none%22%3Bdocument.querySelector(%22%23modalaction%22).style.display%3D%22none%22%3Bvoid+0
where am i supposed to add all this ? please guide a little.