External URL works, but it's generally better to actually do this from CSS. The below would let you restyle the page to display however you like during print.
Code:
@media print {
YOUR_CSS_HERE
}
With this you don't need special URLs. Simply press the print button and you're good to go. Below is an example for Cassiopeia template.
Code:
@media print {
body.view-userslist > :not(.site-grid),
body.view-userslist > .site-grid > :not(.container-component),
body.view-userslist > .site-grid > .container-component > :not(main),
body.view-userslist .cbUserListTitle,
body.view-userslist .cbUserListHead,
body.view-userslist .cbUserListSearch {
display: none !important;
}
body.view-userslist > .site-grid > .container-component {
grid-column: -1 / 1 !important;
}
body.view-userslist > .site-grid > .container-component > main {
margin: 0 !important;
}
}
This then gives you the below for example.
Non-Print:
Print: