JustPaste.it

(function(){
var textArea = document.createElement("textarea");
textArea.style.position = 'fixed';
textArea.style.top = 0;
textArea.style.left = 0;
textArea.style.width = '2em';
textArea.style.height = '2em';
textArea.style.padding = 0;
textArea.style.border = 'none';
textArea.style.outline = 'none';
textArea.style.boxShadow = 'none';
textArea.style.background = 'transparent';
var tables = document.getElementsByClassName('listing listing-cards-tabular b-table b-table-a');
var text = '';
for (var i = 0; i < tables.length; i++) {
text += tables[i].outerHTML;
}
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();
try {
var successful = document.execCommand('copy');
var msg = successful ? 'successful' : 'unsuccessful';
alert('Copying html was ' + msg);
} catch (err) {
alert('Oops, unable to copy');
}
document.body.removeChild(textArea);
})();